Skip to content

Commit

Permalink
fix github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
valcanobacon committed Apr 13, 2024
1 parent 963e280 commit 28115d1
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.9
python-version: 3.11

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install '.[tests]'
pip install '.[tests,dev]'
- name: flake8
run: flake8 src tests *.py
Expand All @@ -30,9 +30,11 @@ jobs:
- 3.7
- 3.8
- 3.9
- 3.10
- 3.11
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
Expand Down

0 comments on commit 28115d1

Please sign in to comment.