This repository was archived by the owner on Aug 30, 2025. It is now read-only.
Support Elixir 1.18 #38
Workflow file for this run
This file contains hidden or 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: Nix derivation checks | |
| on: | |
| pull_request: | |
| paths: ["mix.lock"] | |
| workflow_dispatch: | |
| jobs: | |
| auto-update-nix-hash: | |
| permissions: | |
| contents: write | |
| runs-on: ubuntu-latest | |
| name: Auto update Nix hash | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: DeterminateSystems/nix-installer-action@main | |
| - uses: DeterminateSystems/magic-nix-cache-action@main | |
| - run: nix run .#update-hash | tee nix/hash | |
| - uses: stefanzweifel/git-auto-commit-action@v5 | |
| with: | |
| commit_message: 'Update Nix hash of Mix deps' | |
| - run: nix build |