diff options
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 12cbe32..7de617d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -46,3 +46,11 @@ jobs: - name: Test run: | python -m unittest discover -t . -s amaranth_boards -p '*.py' + + required: # group all required workflows into one for the required status check + needs: + - test + runs-on: ubuntu-latest + steps: + - run: | + true |
