Skip to content

0.3.0

0.3.0 #16

Workflow file for this run

name: 'CI'
on:
push:
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
env:
CARGO_INCREMENTAL: 0
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
override: true
toolchain: stable
target: ${{ matrix.job.target }}
- name: Cache dependencies
uses: Swatinem/rust-cache@v1
- name: Build
run: cargo build --locked --verbose
- name: Test
run: cargo test
- name: Check formatting
run: cargo fmt -- --check