chore(deps): bump chrono from 0.4.37 to 0.4.39 #211
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: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@main | |
with: | |
extra-conf: | | |
keep-outputs = true | |
keep-derivations = true | |
- name: Use Nix Cache | |
uses: DeterminateSystems/magic-nix-cache-action@main | |
- name: Build server package | |
run: nix build ".#container" -L | |
flake-check: | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
check: [ "app-hydrate-clippy", "app-ssr-clippy", "site-server-clippy", "site-frontend-clippy", "site-server-doc", "site-server-fmt", "site-server-deny", "site-server-nextest" ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@main | |
with: | |
extra-conf: | | |
keep-outputs = true | |
keep-derivations = true | |
- name: Use Nix Cache | |
uses: DeterminateSystems/magic-nix-cache-action@main | |
- name: Check flake inputs | |
uses: DeterminateSystems/flake-checker-action@main | |
- name: Run flake checks | |
run: nix build "./#checks.x86_64-linux.${{ matrix.check }}" -L | |
fly-check: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install flyctl | |
uses: superfly/flyctl-actions/setup-flyctl@master | |
- name: Validate fly.io config | |
run: flyctl config validate | |
env: | |
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} |