Skip to content

Escape "#"

Escape "#" #9

Workflow file for this run

name: CI
on: push
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
strategy:
matrix:
os:
# - macos-latest
- ubuntu-latest
packages:
- name: terraform-1_6_2
allow_unfree: 1
- name: terraform-1_6_1
allow_unfree: 1
- name: terraform-1_6_0
allow_unfree: 1
- name: terraform-1_5_7
allow_unfree: 0
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v22
- uses: cachix/cachix-action@v12
with:
name: nixpkgs-terraform
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
- run: nix build --impure .\#${{ matrix.package.name }}
env:
NIXPKGS_ALLOW_UNFREE: ${{ matrix.package.allow_unfree }}