Skip to content

Commit

Permalink
ci: fix versions in github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
fblanchetNaN committed Apr 18, 2022
1 parent 6bf129a commit df70ee9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.10
python-version: '3.10'
- name: Cache python env
uses: actions/cache@v2
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.10
python-version: '3.10'
- name: Cache python env
uses: actions/cache@v2
with:
Expand All @@ -36,15 +36,15 @@ jobs:
- name: Check format with black
run: python -m black -v --check .
- name: Lint with flakeheaven
run: python -m flakeheaven lint -v
run: python -m flakeheaven lint -v incipyt

test:
name: Tests
needs: lint
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.7, 3.8, 3.9, 3.10]
python-version: ['3.7', '3.8', '3.9', '3.10']
runs-on: ${{ matrix.os }}
env:
_OS: ${{ matrix.os }}
Expand Down

0 comments on commit df70ee9

Please sign in to comment.