Merge pull request #258 from oskardotglobal/patch-1 #70
This file contains hidden or 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: 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: Morph Build ${{ Matrix.targets }} | |
| # run: nix run . -- build examples/${{ matrix.targets }} |