Skip to content

Commit

Permalink
fix: move collect-and-verify to unit-tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
irtazaakram authored and feanil committed May 30, 2024
1 parent b3185ff commit c22fbec
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 28 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,26 @@ jobs:
path: reports/${{matrix.shard_name}}.coverage
overwrite: true

collect-and-verify:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.11

- name: install system requirements
run: |
make ubuntu-requirements
- name: install requirements
run: |
make test-requirements
- name: verify unit tests count
uses: ./.github/actions/verify-tests-count

# This job aggregates test results. It's the required check for branch protection.
# https://github.com/marketplace/actions/alls-green#why
# https://github.com/orgs/community/discussions/33579
Expand Down
28 changes: 0 additions & 28 deletions .github/workflows/verify-gha-unit-tests-count.yml

This file was deleted.

0 comments on commit c22fbec

Please sign in to comment.