Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 8 additions & 7 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ jobs:
style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: '3.8'
python-version: '3.10'
- name: "Install style checker"
run: pip install black
- name: "Run style check"
Expand All @@ -23,12 +23,13 @@ jobs:
- name: "Run build phase"
run: echo "Building project $PROJECT_NAME"
test:
needs: build
# needs: build # We would normally not run the tests if the build fails,
# but letting them go through, for demonstration purposes.
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: '3.8'
python-version: '3.10'
- name: "Run unittest"
run: python -m unittest
Loading