File tree Expand file tree Collapse file tree 5 files changed +34
-56
lines changed Expand file tree Collapse file tree 5 files changed +34
-56
lines changed Original file line number Diff line number Diff line change 17
17
- name : install latest clang-format
18
18
run : brew install clang-format
19
19
20
- # Run formatting checks
21
-
22
20
- name : make format-check
23
21
run : make format-check
Original file line number Diff line number Diff line change 17
17
- name : perform checkout
18
18
uses : actions/checkout@v4
19
19
20
- - name : perform setup
21
- run : ./scripts/setup.sh
20
+ - name : perform setup
21
+ run : ./scripts/setup.sh
22
22
23
- - name : build all targets
24
- run : make
23
+ - name : build all targets
24
+ run : make
25
+
26
+ - name : run tests
27
+ run : |
28
+ cd ./bin/tests/build
29
+ ./app
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -17,17 +17,22 @@ jobs:
17
17
- name : perform checkout
18
18
uses : actions/checkout@v4
19
19
20
- - name : update apt
21
- run : sudo apt-get update
20
+ - name : update apt
21
+ run : sudo apt-get update
22
22
23
- - name : install vulkan dependencies
24
- run : sudo apt install git build-essential libx11-xcb-dev libxkbcommon-dev libwayland-dev libxrandr-dev
23
+ - name : install vulkan dependencies
24
+ run : sudo apt install git build-essential libx11-xcb-dev libxkbcommon-dev libwayland-dev libxrandr-dev
25
25
26
- - name : install glfw dependencies
27
- run : sudo apt install libasound2-dev mesa-common-dev libx11-dev libxrandr-dev libxi-dev xorg-dev libgl1-mesa-dev libglu1-mesa-dev
26
+ - name : install glfw dependencies
27
+ run : sudo apt install libasound2-dev mesa-common-dev libx11-dev libxrandr-dev libxi-dev xorg-dev libgl1-mesa-dev libglu1-mesa-dev
28
28
29
- - name : perform setup
30
- run : ./scripts/setup.sh
29
+ - name : perform setup
30
+ run : ./scripts/setup.sh
31
31
32
- - name : build all targets
33
- run : make
32
+ - name : build all targets
33
+ run : make
34
+
35
+ - name : run tests
36
+ run : |
37
+ cd ./bin/tests/build
38
+ ./app
Original file line number Diff line number Diff line change 20
20
- name : perform checkout
21
21
uses : actions/checkout@v4
22
22
23
- - name : perform setup
24
- run : ./scripts/setup.ps1
25
-
26
- - name : build all targets
27
- run : mingw32-make
23
+ - name : perform setup
24
+ run : ./scripts/setup.ps1
25
+
26
+ - name : build all targets
27
+ run : mingw32-make
28
+
29
+ - name : run tests
30
+ run : |
31
+ cd ./bin/tests/build
32
+ ./app.exe
You can’t perform that action at this time.
0 commit comments