Skip to content

Commit

Permalink
Update tests on PR with lts and 1
Browse files Browse the repository at this point in the history
  • Loading branch information
datejada committed Oct 11, 2024
1 parent ef944b4 commit 3d48591
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions .github/workflows/TestOnPRs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,21 @@ jobs:
test:
uses: ./.github/workflows/ReusableTest.yml
with:
os: ubuntu-latest
version: "lts"
arch: x64
allow_failure: false
run_codecov: true
os: ${{ matrix.os }}
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
allow_failure: ${{ matrix.allow_failure }}
run_codecov: ${{ matrix.version == '1' && matrix.os == 'ubuntu-latest' }}
secrets:
codecov_token: ${{ secrets.CODECOV_TOKEN }}
strategy:
fail-fast: false
matrix:
version:
- "lts"
- "1"
os:
- ubuntu-latest
arch:
- x64
allow_failure: [false]

0 comments on commit 3d48591

Please sign in to comment.