mirror of
https://github.com/dwinkler1/np.git
synced 2026-05-22 21:23:31 -04:00
Rename workflow and add Ubuntu support
This commit is contained in:
parent
a28cc5da2d
commit
4b7c5bc13f
1 changed files with 26 additions and 0 deletions
26
.github/workflows/check_ed.yml
vendored
Normal file
26
.github/workflows/check_ed.yml
vendored
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
name: "Test ed 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, ubuntu-latest]
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: cachix/install-nix-action@v31
|
||||
with:
|
||||
github_access_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
- uses: cachix/cachix-action@v17
|
||||
with:
|
||||
name: rde
|
||||
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
||||
extraPullNames: rstats-on-nix, nix-community
|
||||
- run: nix build ./templates/ed
|
||||
Loading…
Add table
Add a link
Reference in a new issue