Skip to content

Bump indexmap from 2.0.1 to 2.1.0 #43

Bump indexmap from 2.0.1 to 2.1.0

Bump indexmap from 2.0.1 to 2.1.0 #43

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
jobs:
lints:
name: Lints
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- name: Enable magic Nix cache
uses: DeterminateSystems/magic-nix-cache-action@main
- name: Cache lint store
id: lint-store
uses: actions/cache@v3
with:
path: ~/.ci-store
key: lint-store-${{ hashFiles('**/Cargo.lock', '**/flake.lock') }}-v1
- name: Check rustfmt
run: nix develop --store ~/.ci-store --command cargo fmt --check
- name: Check nixpkgs-fmt formatting
run: nix develop --store ~/.ci-store --command nixpkgs-fmt --check .
- name: Check build
run: nix develop --store ~/.ci-store --command cargo build
- name: Check tests
run: nix develop --store ~/.ci-store --command cargo test