Skip to content

Merge pull request #100 from compscidr/renovate/actions-checkout-digest #270

Merge pull request #100 from compscidr/renovate/actions-checkout-digest

Merge pull request #100 from compscidr/renovate/actions-checkout-digest #270

on: [push]
jobs:
test:
name: Format and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- run: cargo fmt --all -- --check && cargo test
build:
name: Build
runs-on: ubuntu-latest
needs: [test]
steps:
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- run: cargo build --release --all-features