Skip to content

AUTO : Forward from beta to master #2

AUTO : Forward from beta to master

AUTO : Forward from beta to master #2

Workflow file for this run

name: Rust CI
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
env:
CARGO_TERM_COLOR: always
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Rust
uses: dtolnay/rust-toolchain@stable
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose --workspace