Skip to content

chore: add a temporary workflow for testing macos gh action #2

chore: add a temporary workflow for testing macos gh action

chore: add a temporary workflow for testing macos gh action #2

Workflow file for this run

name: mactest
on:
push:
jobs:
e2e-macos:

Check failure on line 6 in .github/workflows/mactest.yml

View workflow run for this annotation

GitHub Actions / mactest

Invalid workflow file

The workflow is not valid. .github/workflows/mactest.yml (Line: 6, Col: 3): The workflow must contain at least one job with no dependencies.
runs-on: macos-latest
needs: artifacts
steps:
- uses: actions/checkout@v4
- name: upgrade bash # macos ships with a really old bash version that breaks use-nix-shell-action used below
run: brew install bash
- name: install dependencies
# note: we forego default.nix and to be as close to a realistic user experience as possible
# all the other dependencies are already present on the runner images, so we use those
# and just install the missing ones via nix
uses: cachix/install-nix-action@v22
with:
nix_path: nixpkgs=channel:nixos-unstable
extra_nix_config: |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
- uses: rrbutani/use-nix-shell-action@v1
env:
NIXPKGS_ALLOW_UNFREE: 1 # terraform uses BSL license now, so we have to enable unfree
with:
packages: terraform,terragrunt,terraform-docs
- name: run test
run: |
bash --version