Fix style of functions #49
Workflow file for this run
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
name: CI | |
on: push | |
concurrency: | |
group: ci-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
templates: | |
strategy: | |
matrix: | |
template: | |
- name: default | |
test: nix develop --accept-flake-config -c python --version | |
- name: devenv | |
test: nix develop --accept-flake-config --impure -c python --version | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v23 | |
- name: Replace inputs on templates | |
run: sed -i 's/github:sestrella\/asdf2nix/github:sestrella\/asdf2nix\/${{ github.sha }}/g' templates/*/flake.nix | |
- name: Create a temporary directory | |
run: echo "tmpdir=$(mktemp -d)" >> "$GITHUB_OUTPUT" | |
id: mktemp | |
- name: Scaffold a new project | |
run: nix flake init -t ${{ github.workspace }}#${{ matrix.template.name }} | |
working-directory: ${{ steps.mktemp.outputs.tmpdir }} | |
- name: Run smoke test | |
run: ${{ matrix.template.test }} | |
working-directory: ${{ steps.mktemp.outputs.tmpdir }} | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v23 | |
- name: Run tests | |
run: nix eval --impure .#tests | |
working-directory: tests | |