Some checks failed
BuildTest / Build and test (push) Failing after 18s
26 lines
491 B
YAML
26 lines
491 B
YAML
name: "BuildTest"
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
name: "Build and test"
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: "Install build deps"
|
|
run: sudo apt install build-essentials
|
|
|
|
- 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
|