Skip to content

fixes for builds and documentation about builds #68

fixes for builds and documentation about builds

fixes for builds and documentation about builds #68

Workflow file for this run

name: Rust
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install latest nightly
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Build
run: cargo build
- name: Clippy
run: cargo clippy
- name: Test
run: cargo test