Skip to content

ci: add ci for testing and linting #4

ci: add ci for testing and linting

ci: add ci for testing and linting #4

Workflow file for this run

on:
push:
branches:
- 'master'
pull_request:
name: build-and-test
concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
cancel-in-progress: true
jobs:
check:
name: Build and Check
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- run: rustup toolchain install stable --profile minimal
- uses: Swatinem/rust-cache@v2
- run: cargo fmt --check
- run: cargo clippy --workspace -- -Dwarnings
- run: cargo build --workspace
- run: cargo test --workspace