feat: add clang-format config, CI workflow, Makefile, and initial C source scaffolding for dobre language
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user