-
Notifications
You must be signed in to change notification settings - Fork 3
48 lines (48 loc) · 1.11 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: CI
on:
workflow_call:
permissions:
contents: read
jobs:
check-formatting-c:
name: Check Formatting (C)
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/[email protected]
- name: Check formatting
uses: jidicula/[email protected]
with:
clang-format-version: 18
check-formatting-markdown:
name: Check Formatting (Markdown)
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/[email protected]
- name: Check formatting
uses: davidanson/[email protected]
with:
globs: '**/*.md'
build:
name: Build
runs-on: windows-latest
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
build-type:
- Debug
- Release
steps:
- name: Checkout
uses: actions/[email protected]
with:
submodules: true
- name: Build
shell: cmd
run: build ${{matrix.build-type}}
- name: Report size
run: du -hb game/out/rom_final.bin