Skip to content

CI first try.

CI first try. #1

Workflow file for this run

name: Sanity check
on:
push:
branches: [main]
pull_request:
types: [opened, reopened]
path: ['!**.md']
env:
CARGO_TERM_COLOR: always
jobs:
check:
name: Check
runs-on: ubuntu-latest
strategy:
matrix: [stable, nightly]
steps:
- uses: actions/checkout@v3
- run: rustup update ${{ matrix.toolchain }} && rustup default
&& ${{ matrix.toolchain }}

Check failure on line 22 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 22
- run: cargo check --verbose
- run: cargo check --verbose -F enabled -F attributes
- run: cargo test
- run: cargo test -F enabled -F attributes
- run: cargo build --examples
- run: cargo build --examples -F instrumented