jasper/.gitea/workflows/build.yaml
Gary Talent d315b70118
All checks were successful
Build / build (push) Successful in 2m16s
[jasper] Add Gitea workflow
2023-12-24 02:48:50 -06:00

20 lines
453 B
YAML

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