Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
agstephens authored Feb 6, 2024
1 parent 7b16a32 commit 29a6d26
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9, 3.10, 3.11]
python-version: [3.7, 3.8, 3.9, 3.10, 3.11]

steps:
- uses: actions/checkout@main
Expand All @@ -26,6 +26,8 @@ jobs:
pip install flake8 black pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f requirements_dev.txt ]; then pip install -r requirements_dev.txt; fi
# Install package locally to check pip install works properly
pip install -e . --no-deps
# - name: Lint with flake8
# run: flake8 roocs_utils tests
# if: matrix.python-version == 3.6
Expand Down

0 comments on commit 29a6d26

Please sign in to comment.