Skip to content

build/cmake: do not optimize away our entire library #28

build/cmake: do not optimize away our entire library

build/cmake: do not optimize away our entire library #28

Workflow file for this run

name: Test (Rust)
on:
push:
branches: [ release, next ]
env:
CARGO_TERM_COLOR: always
jobs:
build-and-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
toolchain:
- stable
- beta
- nightly
os:
- ubuntu-latest
- macos-latest
- windows-latest
steps:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }}
- run: rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose
- run: cargo test --verbose