Skip to content

Merge pull request #24 from donovanglover/dependabot/cargo/minreq-2.11.0 #103

Merge pull request #24 from donovanglover/dependabot/cargo/minreq-2.11.0

Merge pull request #24 from donovanglover/dependabot/cargo/minreq-2.11.0 #103

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