69fcd7ad10
git-subtree-dir: deps/oxlib git-subtree-split: 85f17c4188e266b82ba8858d21f67289c72e7b9a
21 lines
477 B
YAML
21 lines
477 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
|
|
- run: make install
|