Fix errors that caused issues with the spoiler log reader #115
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: MM3DR Build Check | |
on: | |
pull_request: | |
jobs: | |
format: | |
name: Verify Formatting | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Project | |
uses: actions/checkout@v3 | |
# - name: Format Project | |
# uses: DoozyX/[email protected] | |
# with: | |
# source: "./code ./source" | |
# extensions: 'c,h,cpp,hpp' | |
# clangFormatVersion: 14 | |
build: | |
name: Confirm Compilable | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/z3dr/randotools:latest | |
steps: | |
- name: Checkout Project | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Compile Project | |
run: | | |
make -j |