mirror of
https://github.com/nix-community/emacs-overlay.git
synced 2025-12-06 02:40:25 -08:00
Add basic evaluation check to run on pull requests
This commit is contained in:
parent
b93864f99e
commit
0d890d28b3
1 changed files with 17 additions and 0 deletions
17
.github/workflows/pulls.yml
vendored
Normal file
17
.github/workflows/pulls.yml
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
name: Checks
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
|
||||
jobs:
|
||||
flake-show:
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
matrix: ${{ steps.set-matrix.outputs.matrix }}
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: cachix/install-nix-action@v22
|
||||
- id: set-matrix
|
||||
name: Evaluate flake
|
||||
run: nix flake show --all-systems
|
||||
Loading…
Add table
Add a link
Reference in a new issue