Gary Talent f7908809ef
All checks were successful
Build / build (push) Successful in 1m57s
Merge commit '27e4cb07986cd71ddd7199111ec97220d722ce70'
2025-02-07 21:00:46 -06:00

20 lines
451 B
YAML

name: Build
run-name: ${{ gitea.actor }} build and test
on: [push]
jobs:
build:
runs-on: olympic
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