Skip to content

Bump anyhow from 1.0.82 to 1.0.83 (#75) #158

Bump anyhow from 1.0.82 to 1.0.83 (#75)

Bump anyhow from 1.0.82 to 1.0.83 (#75) #158

on:
pull_request:
push:
branches:
- "*"
name: Build & Test
env:
CARGO_TERM_COLOR: always
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Format
run: cargo fmt --all -- --check
- name: Lint
run: cargo clippy --all-targets --all-features -- -D warnings
build:
runs-on: ubuntu-latest
needs: [ lint ]
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build
- name: Test
run: cargo test --no-fail-fast
env:
RUST_LOG: debug