Skip to content

[gh-actions](deps): Bump actions/checkout from 4 to 5 #104

[gh-actions](deps): Bump actions/checkout from 4 to 5

[gh-actions](deps): Bump actions/checkout from 4 to 5 #104

Workflow file for this run

name: Smoke Test
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '^3.10'
- name: Install solidation
run: python -m pip install .
- name: Run solidation
run: solidation -c solidation.yaml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}