Skip to content

actions-rs

actions-rs #22

Workflow file for this run

name: Rust
on:
push:
branches: [ "main","scratch" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:

Check failure on line 23 in .github/workflows/rust.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/rust.yml

Invalid workflow file

You have an error in your yaml syntax on line 23
toolchain: stable
- name: Build
run: cargo build --release --verbose
- name: Run tests
run: cargo test --verbose