censorbib/.github/workflows/build.yaml
Philipp Winter 1b540a56e5 Only run the build for pull requests.
No need to run it for every single push.
2024-03-10 15:09:33 -05:00

14 lines
271 B
YAML

name: Build
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: |
go build -C src -o ../compiler
./compiler -path references.bib > /dev/null