Skip to content

invar: the unconditional fence (#98) #276

invar: the unconditional fence (#98)

invar: the unconditional fence (#98) #276

Workflow file for this run

name: CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
checkfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: cargo check --features serde
- run: cargo fmt --check
miri:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
- name: Run miri
run: ci/miri.sh
tests:
strategy:
matrix:
rust:
- stable
- nightly
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
override: true
- uses: actions-rs/cargo@v1
with:
command: test
args: --verbose