Skip to content

prepare for the 0.1.7 release #106

prepare for the 0.1.7 release

prepare for the 0.1.7 release #106

Workflow file for this run

name: Rust
on:
push:
branches: [master]
pull_request:
branches: [master]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cargo fmt
run: |
rustup toolchain install nightly --profile minimal -c rustfmt
cargo +nightly fmt --check