Merge commit 'cf0d078a1e13fc9a3f0e290126e738976744c715'

This commit is contained in:
2023-12-26 12:15:45 -06:00
13 changed files with 168 additions and 83 deletions

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