Use header only library target to allow it to be used as dependency #57
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: C/C++ CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v3 | |
- name: shader compiler test | |
run: glslc --version | |
- name: build system test | |
run: mingw32-make --version | |
- name: build-debug | |
run: mingw32-make -s build-debug | |
- name: cleaning | |
run: mingw32-make -i -s clean |