Skip to content

ci

ci #3

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@v5
- run: rustup install nightly && rustup default nightly && rustup component add rustfmt clippy
- run: cargo +nightly fmt --check
- run: cargo +nightly clippy --all-targets --all-features
- run: cargo +nightly build
- run: cargo +nightly test