Git pre-push hooks #84
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
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
name: Elixir CI | |
env: | |
MIX_ENV: test | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
permissions: | |
actions: write | |
contents: read | |
jobs: | |
pre_job: | |
name: check for duplicate tasks | |
# continue-on-error: true # Uncomment once integration is finished | |
runs-on: ubuntu-latest | |
# Map a step output to a job output | |
outputs: | |
should_skip: ${{ steps.skip_check.outputs.should_skip }} | |
steps: | |
- id: skip_check | |
uses: fkirc/skip-duplicate-actions@v5 | |
with: | |
paths_ignore: '["**.md", "docs/**"]' | |
cancel_others: true | |
build: | |
needs: pre_job | |
if: needs.pre_job.outputs.should_skip != 'true' | |
name: Build and test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: "0" | |
- uses: DeterminateSystems/nix-installer-action@main | |
- uses: DeterminateSystems/magic-nix-cache-action@main | |
- uses: DeterminateSystems/flake-checker-action@main | |
- name: Restore dependencies cache | |
id: deps-cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
deps | |
_build | |
priv/plts | |
.nix-mix | |
.nix-hex | |
key: ${{ runner.os }}-mix-${{ hashFiles(format('{0}{1}', github.workspace, '/flake.*')) }}-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.*')) }} | |
restore-keys: | | |
${{ runner.os }}-mix-${{ hashFiles(format('{0}{1}', github.workspace, '/flake.*')) }} | |
${{ runner.os }}-mix- | |
- name: Build dependencies | |
if: steps.deps-cache.outputs.cache-hit != 'true' | |
run: | | |
mkdir -p priv/plts | |
nix develop -c mix local.hex | |
nix develop -c mix deps.get | |
nix develop -c mix dialyzer --plt | |
- name: Run flakes check | |
run: | | |
nix flake check | |
nix develop -c echo OK | |
- name: Run pre-commit checks | |
env: | |
HEAD_REF: ${{ github.head_ref }} | |
BASE_REF: ${{ github.base_ref }} | |
run: | | |
if [[ -n "$HEAD_REF" && -n "$BASE_REF" ]]; then | |
git fetch --depth=1 origin "$BASE_REF" | |
git fetch --depth=1 origin "$HEAD_REF" | |
nix develop -c pre-commit run --show-diff-on-failure --color=always --to-ref "$BASE_REF" --from-ref "$HEAD_REF" | |
else | |
nix develop -c pre-commit run --show-diff-on-failure --color=always --all-files | |
fi |