Upgrade Myriad (#7)

This commit is contained in:
Patrick Stevens
2023-12-24 12:43:01 +00:00
committed by GitHub
parent 487a5f8641
commit 0f42e6fda9
13 changed files with 155 additions and 106 deletions

View File

@@ -91,8 +91,21 @@ jobs:
- name: Run link checker
run: nix develop --command markdown-link-check README.md
flake-check:
name: Check flake
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Install Nix
uses: cachix/install-nix-action@v20
with:
extra_nix_config: |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
- name: Flake check
run: nix flake check
all-required-checks-complete:
needs: [check-dotnet-format, check-nix-format, build, build-nix, linkcheck]
needs: [check-dotnet-format, check-nix-format, build, build-nix, linkcheck, flake-check]
runs-on: ubuntu-latest
steps:
- run: echo "All required checks complete."