Skip to content

CI first try.

CI first try. #4

Workflow file for this run

name: Sanity check
on:
push:
branches:
- main
pull_request:
types: [opened, reopened]
paths-ignore: ['**.md']
env:
CARGO_TERM_COLOR: always
jobs:
check:
name: Check
runs-on: ubuntu-latest
strategy:
matrix: [stable, nightly]
steps:
- uses: actions/checkout@v3

Check failure on line 21 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 21
- run: rustup update ${{ matrix.toolchain }} && rustup default && ${{ matrix.toolchain }}
- 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