Skip to content

Commit

Permalink
run tests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
poszu committed Aug 20, 2024
1 parent c2e019e commit aca7b65
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,12 +100,31 @@ jobs:
target/release/quicksync${{ matrix.os == 'windows-2019' && '.exe' || '' }}
if-no-files-found: error

test:
runs-on: ${{ matrix.os }}
needs:
- check
- fmt
- clippy
strategy:
fail-fast: true
matrix:
os:
- ubuntu-22.04
- ubuntu-latest-arm-8-cores
- macos-13
- [self-hosted, macos, arm64]
- windows-2022
steps:
- uses: actions/checkout@v4
- name: Install stable
uses: dtolnay/rust-toolchain@1.80
- run: cargo test

coverage:
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Install stable
uses: dtolnay/rust-toolchain@1.80
- run: cargo install cargo-tarpaulin
Expand Down

0 comments on commit aca7b65

Please sign in to comment.