chore(deps): bump serde from 1.0.215 to 1.0.217 #234
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Nix Flake | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
self-care: | |
name: Flake self-check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Check Nix flake inputs | |
uses: DeterminateSystems/flake-checker-action@v9 | |
with: | |
fail-mode: true | |
config-tests: | |
name: "${{ matrix.os-name }} Nix Test" | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-latest | |
os-name: "Linux x86" | |
- os: macos-latest | |
os-name: "macOS x86" | |
- os: macos-14 | |
os-name: "macOS Apple Silicon" | |
steps: | |
- name: "Checkout Repo" | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: "Install Nix" | |
uses: DeterminateSystems/nix-installer-action@v16 | |
- name: "Nix Cache" | |
uses: DeterminateSystems/magic-nix-cache-action@v8 | |
- name: "Test Nix Package" | |
run: nix build -L . |