mirror of
https://github.com/hsjobeki/noogle.git
synced 2024-12-25 23:13:30 +03:00
15 lines
295 B
YAML
15 lines
295 B
YAML
|
name: "build"
|
||
|
on:
|
||
|
pull_request:
|
||
|
push:
|
||
|
jobs:
|
||
|
tests:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- uses: cachix/install-nix-action@v18
|
||
|
with:
|
||
|
extra_nix_config: |
|
||
|
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
|
||
|
- run: nix build
|