Skip to content

Build smaller possible binary #29

Build smaller possible binary

Build smaller possible binary #29

Workflow file for this run

on: [push, pull_request]
name: continuous integration
jobs:
test:
name: test
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4.1.1
- uses: dtolnay/rust-toolchain@stable
- run: cargo test --release --all-features
fmt:
name: rustfmt
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4.1.1
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- run: cargo fmt --all -- --check