diff options
| author | Catherine <whitequark@whitequark.org> | 2023-08-08 10:27:20 +0000 |
|---|---|---|
| committer | Catherine <whitequark@whitequark.org> | 2023-08-08 11:44:37 +0100 |
| commit | 3a662f05206c8f3705f603b1bd61ee2689277a6f (patch) | |
| tree | 6271aef95d46a1dc599c3ac43d1e22cabf2197a6 /.github/workflows/main.yml | |
| parent | 510c28e3799aeca1cbf72ba26771d0951f98412e (diff) | |
Drop support for Python 3.7.
Also, expand the Python CI version range to be the same as that
of Amaranth.
Diffstat (limited to '.github/workflows/main.yml')
| -rw-r--r-- | .github/workflows/main.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2541e90..12cbe32 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -3,19 +3,27 @@ on: pull_request: schedule: - cron: '0 0 * * *' # test daily against git HEAD of dependencies + name: CI jobs: + test: runs-on: ubuntu-latest strategy: matrix: python-version: - '3.8' + - '3.9' + - '3.10' + - '3.11' + - 'pypy-3.8' + - 'pypy-3.9' # this version range needs to be synchronized with the one in pyproject.toml amaranth-version: - '0.3' - 'git' fail-fast: false + name: 'test (${{ matrix.python-version }}, ${{ matrix.amaranth-version }})' steps: - name: Check out source code uses: actions/checkout@v3 |
