Skip to content

ci: Use stable Rust for build step. (#22) #89

ci: Use stable Rust for build step. (#22)

ci: Use stable Rust for build step. (#22) #89

Workflow file for this run

name: Rust
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: install stable toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: rustfmt
- name: Build
run: cargo build --workspace --verbose
- name: Run tests
run: cargo test --workspace --verbose