Skip to content

Bump anyhow from 1.0.83 to 1.0.84 #1597

Bump anyhow from 1.0.83 to 1.0.84

Bump anyhow from 1.0.83 to 1.0.84 #1597

Workflow file for this run

name: Regression
on:
push:
branches:
- master
pull_request:
jobs:
build:
strategy:
matrix:
include:
- os: ubuntu-latest
rust: stable
target: x86_64-unknown-linux-gnu
- os: macOS-latest
rust: stable
target: x86_64-apple-darwin
- os: windows-latest
rust: stable
target: x86_64-pc-windows-msvc
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: ${{ matrix.rust }}
targets: ${{ matrix.target }}
- name: Run tests
run: cargo test --locked --target ${{ matrix.target }}
- name: Run tests feature variation
run: cargo test --locked --target ${{ matrix.target }} --no-default-features
msrv:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: 1.70.0
targets: x86_64-unknown-linux-gnu
- name: Run build
run: cargo build
rustfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: stable
components: rustfmt
- name: Run rustfmt
run: cargo fmt -- --check
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: stable
components: clippy
- name: Run clippy
run: cargo clippy -- -D warnings
- name: Run clippy feature variation
run: cargo clippy --no-default-features -- -D warnings