resume/.github/workflows/build.yml

37 lines
1 KiB
YAML
Raw Normal View History

2023-02-12 18:02:14 +00:00
name: "Build"
2024-04-25 03:35:54 +00:00
on: [pull_request, push]
2023-02-12 18:02:14 +00:00
jobs:
2023-02-13 18:18:39 +00:00
pre-commit-hooks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
2024-04-25 03:35:54 +00:00
- uses: cachix/install-nix-action@v25
2023-02-13 18:18:39 +00:00
- run: echo "PY=$(python -VV | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV
- name: Cache pre-commit environment
uses: actions/cache@v3
with:
path: ~/.cache/pre-commit
key: pre-commit-${{ env.PY }}-${{ hashFiles('.pre-commit-config.yaml') }}
- name: Run pre-commit hooks
run: nix develop --command -- pre-commit run --show-diff-on-failure --color=always --from-ref origin/main --to-ref "$GITHUB_SHA"
build:
needs: pre-commit-hooks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v25
- uses: cachix/cachix-action@v14
with:
name: alejandr0angul0-resume
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- run: nix build
- run: nix flake check
- run: nix run