Skip to content

ci: add codecov configuration file #185

ci: add codecov configuration file

ci: add codecov configuration file #185

Workflow file for this run

name: Test
on:
push:
branches: ["main"]
paths-ignore:
- "**.md"
pull_request:
branches: ["main"]
paths-ignore:
- "**.md"
env:
CARGO_TERM_COLOR: always
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
toolchain:
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v4
- name: Update rust
run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- name: Build
run: cargo build --verbose --locked
- name: Run tests
run: cargo test --verbose