diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 357058ee6..e215df317 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -7,7 +7,6 @@ on: - release/** pull_request: branches: - - main - release/** defaults: diff --git a/.github/workflows/unit-test.yaml b/.github/workflows/unit-test.yaml new file mode 100644 index 000000000..e6fafb169 --- /dev/null +++ b/.github/workflows/unit-test.yaml @@ -0,0 +1,18 @@ +name: Test + +on: + push: {} + pull_request: + branches: + - main + +jobs: + + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Run tests + uses: ./.github/actions/run-tests + - name: Report coverage + run: bash <(curl -s https://codecov.io/bash) \ No newline at end of file