Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sbidoul committed Feb 8, 2023
1 parent ce342d0 commit e7acaf5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,18 @@ jobs:
- uses: pre-commit/action@v2.0.3
tests:
name: "Test with python ${{ matrix.python-version }} on ${{ matrix.os }}"
runs-on: ubuntu-latest
runs-on: ${{ matrix.machine }}
strategy:
matrix:
python-version: ["3.6", "3.8", "3.10"]
include:
- python-version: "3.6"
machine: ubuntu-20.04
- python-version: "3.8"
machine: ubuntu-20.04
- python-version: "3.10"
machine: ubuntu-22.04
- python-version: "3.11"
machine: ubuntu-22.04
steps:
- uses: "actions/checkout@v2"
- uses: "actions/setup-python@v2"
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ exclude: |
(?x)
^template/
repos:
- repo: https://gitlab.com/PyCQA/flake8
- repo: https://github.com/PyCQA/flake8
rev: 3.9.2
hooks:
- id: flake8
Expand Down

0 comments on commit e7acaf5

Please sign in to comment.