Skip to content

chore: update README.md, [skip ci] #1

chore: update README.md, [skip ci]

chore: update README.md, [skip ci] #1

Workflow file for this run

name: Tests
on:
workflow_call:
pull_request:
branches: ["main"]
env:
RUSTFLAGS: "-Dwarnings"
CARGO_TERM_COLOR: "always"
jobs:
rust-cargo-test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: Run tests
run: make test