diff options
| author | seth <[email protected]> | 2023-09-01 15:35:00 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-09-06 10:48:13 -0400 |
| commit | 27bee5c6bc5ab8df93f2be20fc9e20ed6e71bd27 (patch) | |
| tree | 2b1e8872f28aa51ca7c5a12ade51a3dca2de2bdf /.github/workflows/build.yaml | |
initial commit
Diffstat (limited to '.github/workflows/build.yaml')
| -rw-r--r-- | .github/workflows/build.yaml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 0000000..a7133ae --- /dev/null +++ b/.github/workflows/build.yaml @@ -0,0 +1,22 @@ +name: build plugin + +on: + push: + branches: + - main + pull_request: + workflow_dispatch: + + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - uses: DeterminateSystems/nix-installer-action@main + - uses: DeterminateSystems/magic-nix-cache-action@main + + - name: run build + run: + nix build -L |
