Compare commits
9 Commits
a00e33176b
...
main
Author | SHA1 | Date | |
---|---|---|---|
ebed228492 | |||
59b69355ef | |||
b51c8f7a6e | |||
88f1603b2d | |||
b993c46cce | |||
6d436f82a6 | |||
063fdca1ca | |||
cead310efc | |||
8dd1620936
|
33
.gitea/workflows/build-and-test.yaml
Normal file
33
.gitea/workflows/build-and-test.yaml
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
name: "BuildTest"
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ main ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ main ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
name: "Build and test"
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: "Install build deps"
|
||||||
|
run: |
|
||||||
|
export DEBIAN_FRONTEND=noninteractive
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get -y --no-install-recommends install build-essential \
|
||||||
|
texlive-latex-base texlive-latex-recommended
|
||||||
|
|
||||||
|
- name: "Checkout repo"
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: "Bootstrap nuweb"
|
||||||
|
run: make nuweb
|
||||||
|
|
||||||
|
- name: "Make nuweb.tex"
|
||||||
|
run: make nuweb.tex nuwebdoc.tex
|
||||||
|
|
||||||
|
- name: "Build again"
|
||||||
|
run: make nuweb
|
||||||
|
|
||||||
|
- name: "Run tests"
|
||||||
|
run: make check
|
Reference in New Issue
Block a user