diff options
| author | Catherine <whitequark@whitequark.org> | 2023-08-08 12:51:58 +0000 |
|---|---|---|
| committer | Catherine <whitequark@whitequark.org> | 2023-08-08 14:14:08 +0100 |
| commit | e66483800371078fd58283e8d0779a00039e787d (patch) | |
| tree | 9a419cd4c51d4dc109f2c89c4ebb4420801f6e69 /.github/workflows/main.yml | |
| parent | 994a4df196b1d61a9a96ce57ffa1dab74ba4b282 (diff) | |
CI: group all required workflows into one for the status check.
This simplifies repository management.
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 |
