diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 11ca471..31eeda5 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -1,4 +1,4 @@ -on: [ push, pull_request ] +on: push name: Lint @@ -34,5 +34,3 @@ jobs: with: command: clippy args: -- -D warnings - - \ No newline at end of file diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..15ad63e --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,37 @@ +on: push + +name: Test + +jobs: + test: + name: Test + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Install minimal nightly toolchain + uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: nightly + override: true + + - name: Run cargo test + uses: actions-rs/cargo@v1 + with: + command: test + args: --all-features --no-fail-fast + env: + RUSTFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests' + RUSTDOCFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests' + + - name: Gather coverage information + id: coverage + uses: actions-rs/grcov@v0.1 + + - name: Upload coverage information + uses: codecov/codecov-action@v3 + with: + files: ${{ steps.cov.outputs.report }} + verbose: true