Skip to content

Merge pull request #107 from akirak/renovate/actions #28

Merge pull request #107 from akirak/renovate/actions

Merge pull request #107 from akirak/renovate/actions #28

name: Check elixir-app
on:
push:
paths:
# Set this to the directory of the template
- elixir-app/**
- .github/workflows/check-elixir-app.yml
workflow_dispatch:
workflow_call:
concurrency:
group: check-elixir-app-${{ 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-app ./work
- name: Prepare the project
working-directory: work
run: |
git init
git add .
- name: Check executables
working-directory: work
run: |
nix develop -L --command mix help
nix develop -L --command elixirc --version