Skip to content

Merge pull request #6 from cuducos/dependabot/cargo/anyhow-1.0.93 #22

Merge pull request #6 from cuducos/dependabot/cargo/anyhow-1.0.93

Merge pull request #6 from cuducos/dependabot/cargo/anyhow-1.0.93 #22

Workflow file for this run

name: Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
tests:
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macos-latest"]
runs-on: ${{ matrix.os }}
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- uses: actions/checkout@v4
- run: cargo fmt --check
- run: cargo clippy --verbose -- -D warnings
- run: cargo test --verbose