20 lines
451 B
YAML
Raw Normal View History

2023-12-24 06:38:28 -06:00
name: Build
run-name: ${{ gitea.actor }} build and test
on: [push]
jobs:
build:
2025-02-07 20:34:22 -06:00
runs-on: olympic
2023-12-24 06:38:28 -06:00
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