File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change 1313 - ' 3.8'
1414 # this version range needs to be synchronized with the one in pyproject.toml
1515 amaranth-version :
16- - ' 0.3'
1716 - ' git'
1817 fail-fast : false
1918 steps :
@@ -27,14 +26,18 @@ jobs:
2726 if : ${{ matrix.amaranth-version != 'git' }}
2827 run : |
2928 pip install 'amaranth==${{ matrix.amaranth-version }}'
30- - name : Downgrade MarkupSafe
31- if : ${{ matrix.amaranth-version == '0.3' }}
32- run : |
33- pip install 'MarkupSafe==2.0.1'
3429 - name : Install Amaranth from git
3530 if : ${{ matrix.amaranth-version == 'git' }}
3631 run : |
3732 pip install git+https://github.com/amaranth-lang/amaranth.git
3833 - name : Test
3934 run : |
4035 python -m unittest discover
36+
37+ required : # group all required workflows into one for the required status check
38+ needs :
39+ - test
40+ runs-on : ubuntu-latest
41+ steps :
42+ - run : |
43+ true
You can’t perform that action at this time.
0 commit comments