Files
Dobre/.github/workflows/make-dobre-single-platform.yml
T

33 lines
496 B
YAML

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