Skip to content

messing around with rust CI testing #2

messing around with rust CI testing

messing around with rust CI testing #2

Workflow file for this run

name: Rust tests
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
- name: Run tests
run: cargo test --all-features