cache-size 0.7.0

A library for finding your L1/L2/L3 cache sizes
Documentation
name: ci
on:
  push:
    branches:
      - master
  pull_request:

env:
  flake: github:${{ github.repository }}/${{ github.sha }}

jobs:
  pre-commit:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: DeterminateSystems/nix-installer-action@v12
      - name: pre-commit-run
        run: nix develop --command -- pre-commit run --all-files
  nix-build:
    runs-on: ubuntu-latest
    steps:
      - uses: DeterminateSystems/nix-installer-action@v12
      - name: nix build
        run: nix build -L '${{ env.flake }}'
      - name: nix flake check
        run: nix flake check -L '${{ env.flake }}'