Skip to content

chore(deps): pin dependencies #146

chore(deps): pin dependencies

chore(deps): pin dependencies #146

Workflow file for this run

name: Check elixir
on:
push:
paths:
# Set this to the directory of the template
- elixir/**
- .github/workflows/check-elixir.yml
workflow_dispatch:
workflow_call:
concurrency:
group: check-elixir-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: cachix/install-nix-action@08dcb3a5e62fa31e2da3d490afc4176ef55ecd72 # v30
with:
extra_nix_config: |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
path: ./tmp
- run: nix flake new -t ./tmp#elixir ./work
- name: Prepare the project
working-directory: work
run: |
git init
git add .
- name: Check executables
run: |
nix develop -L --command mix help
nix develop -L --command elixirc --version
working-directory: work