Skip to content
This repository has been archived by the owner on Jul 26, 2024. It is now read-only.

Bump serde from 1.0.199 to 1.0.202 #996

Bump serde from 1.0.199 to 1.0.202

Bump serde from 1.0.199 to 1.0.202 #996

Workflow file for this run

name: CI
on:
push:
env:
NIX_SCRIPT_LOG: trace
NIX_SCRIPT_CACHE: cache
jobs:
build-and-test:
name: build and test
strategy:
matrix:
# note: we're using ubuntu-latest as a stand-in for all Linux
# distributions. If we find we need more, we should do Docker stuff.
os: [ubuntu-latest, macos-11] # depending on usage, maybe add macos-10.15 too
runs-on: "${{ matrix.os }}"
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v25
- uses: cachix/cachix-action@v14
with:
name: nix-script
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- uses: Swatinem/rust-cache@v2
- run: nix build --print-build-logs
- run: nix develop --command bash -c 'NIX_PATH="nixpkgs=$NIX_PKGS" cargo test'
rustfmt:
name: rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v25
- uses: cachix/cachix-action@v14
with:
name: nix-script
skipPush: true
- run: nix develop --command rustfmt --check $(find . -name "*.rs" -not -ipath '*target*')