chore(deps): pin rust crate anyhow to =1.0.100 (#194) #1035
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v5 | |
- uses: moonrepo/setup-rust@v1 | |
with: | |
inherit-toolchain: true | |
- run: rustup component add rustfmt --toolchain nightly | |
- run: cargo fetch --locked | |
- run: cargo +nightly fmt --check | |
- run: cargo clippy -- --deny warnings | |
- run: cargo test |