readme: fix build badges #6
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: "Build Example Configs" | |
on: | |
push: | |
branches: | |
- "master" | |
pull_request: | |
branches: | |
- "master" | |
jobs: | |
linux: | |
name: Linux ${{ matrix.systems }} ${{ matrix.targets }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
targets: [healthchecks.nix, secrets.nix, simple.nix] | |
os: [ubuntu-latest] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@main | |
- name: Setup Nix cache | |
uses: DeterminateSystems/magic-nix-cache-action@main | |
- name: Morph Build ${{ Matrix.targets }} | |
run: nix run . -- build examples/${{ matrix.targets }} | |
# Doesn't work :( | |
# macos: | |
# name: MacOS ${{ matrix.systems }} ${{ matrix.targets }} | |
# runs-on: ${{ matrix.os }} | |
# strategy: | |
# matrix: | |
# targets: [healthchecks.nix, secrets.nix, simple.nix] | |
# os: [macos-latest] | |
# steps: | |
# - name: Checkout repository | |
# uses: actions/checkout@v4 | |
# - name: Install Nix | |
# uses: DeterminateSystems/nix-installer-action@main | |
# - name: Setup Nix cache | |
# uses: DeterminateSystems/magic-nix-cache-action@main | |
# - name: Morph Build ${{ Matrix.targets }} | |
# run: nix run . -- build examples/${{ matrix.targets }} |