build(deps): bump serde_json from 1.0.129 to 1.0.132 #1341
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: ci | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
check: | |
name: check | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install nix | |
uses: cachix/install-nix-action@v30 | |
- name: Set up cachix | |
uses: cachix/cachix-action@v15 | |
with: | |
name: nix-community | |
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }} | |
- name: Run checks | |
run: nix flake check |