[jasper] Add Gitea workflow
All checks were successful
Build / build (push) Successful in 2m16s

This commit is contained in:
Gary Talent 2023-12-24 02:02:13 -06:00
parent d40d017757
commit d315b70118

View File

@ -0,0 +1,19 @@
name: Build
run-name: ${{ gitea.actor }} build and test
on: [push]
jobs:
build:
runs-on: nostalgia
steps:
- name: Check out repository code
uses: actions/checkout@v3
- run: make purge configure-debug
- run: make build
- run: make test
- run: make purge configure-asan
- run: make build
- run: make test
- run: make purge configure-release
- run: make build
- run: make test