mirror of
https://github.com/dwinkler1/np.git
synced 2026-02-19 22:40:57 -05:00
27 lines
714 B
YAML
27 lines
714 B
YAML
name: "Test template MacOS"
|
|
on:
|
|
workflow_dispatch: # allows manual triggering
|
|
push:
|
|
branches:
|
|
- 'update_rde'
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
jobs:
|
|
tests:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [macos-latest]
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- uses: cachix/install-nix-action@v31
|
|
with:
|
|
github_access_token: ${{ secrets.GITHUB_TOKEN }}
|
|
- uses: cachix/cachix-action@v16
|
|
with:
|
|
name: rde
|
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
|
extraPullNames: rstats-on-nix, nix-community
|
|
- run: nix build ./templates/rde
|
|
- run: nix build ./templates/ed
|