Skip to content

chore(deps): bump minreq from 2.10.0 to 2.11.0 #95

chore(deps): bump minreq from 2.10.0 to 2.11.0

chore(deps): bump minreq from 2.10.0 to 2.11.0 #95

Workflow file for this run

name: ci
on:
push:
pull_request:
jobs:
nix-flake-check:
name: nix flake check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v22
- run: nix flake check
nix-build:
name: nix build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v22
- run: nix build
cargo-build-and-test:
name: cargo build && cargo test
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v3
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose
- run: cargo test --verbose