Skip to content

Bump tempfile from 3.14.0 to 3.15.0 #4

Bump tempfile from 3.14.0 to 3.15.0

Bump tempfile from 3.14.0 to 3.15.0 #4

Workflow file for this run

name: PR Verification
on:
pull_request:
branches: [master]
jobs:
cargo:
strategy:
matrix:
runner:
# Release already exercises a build, so this only needs to worry about testable targets
- ubuntu-latest # x86_64-unknown-linux-gnu
- macos-13 # x86_64-apple-darwin
- macos-latest # aarch64-apple-darwin
- windows-latest # x86_64-pc-windows-msvc
runs-on: ${{ matrix.runner }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
cache-key: ${{ matrix.runner }}
- name: Format
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Test
run: cargo test --all-targets --all-features
nix:
strategy:
matrix:
runner:
- ubuntu-latest # x86_64-linux
- macos-13 # x86_64-darwin
- macos-latest # aarch64-darwin
runs-on: ${{ matrix.runner }}
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@v16
- uses: DeterminateSystems/magic-nix-cache-action@v8
- name: Format
run: nix fmt -- --check .
- name: Build
run: nix build
verify:
needs: [cargo, nix]
runs-on: ubuntu-latest
steps:
- run: echo "Verified!"