name: Build and test
|
|
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
|
|
env:
|
|
BUILD_TYPE: Release
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Build
|
|
working-directory: ${{github.workspace}}
|
|
run: make build
|
|
|
|
- name: Test all
|
|
working-directory: ${{github.workspace}}
|
|
run: make test
|
|
|
|
- name: Bench
|
|
working-directory: ${{github.workspace}}
|
|
run: make big
|
|
|