Skip to content

Commit

Permalink
Build testing in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
realcharmer committed Feb 15, 2024
1 parent ac373d1 commit ae65852
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
on:
push:
branches:
- master
- test
pull_request:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Set up TeXLive
uses: docker://texlive/texlive

- name: Build
run: make

- name: Clean
run: make cleanall

0 comments on commit ae65852

Please sign in to comment.