aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/main.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/main.yml')
-rw-r--r--.github/workflows/main.yml8
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