We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63eae6c commit 9de9212Copy full SHA for 9de9212
.github/workflows/c-cpp.yml
@@ -0,0 +1,23 @@
1
+name: C/C++ CI
2
+
3
+on:
4
+ push:
5
+ branches: [ "master" ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
12
+ runs-on: ubuntu-24.04
13
14
+ steps:
15
+ - name: apt install mingw
16
+ run: sudo apt update && sudo apt install -y gcc-mingw-w64-i686
17
+ - uses: actions/checkout@v4
18
+ - name: make
19
+ run: make
20
+ - uses: actions/upload-artifact@v4.6.0
21
+ with:
22
+ name: ffrunner
23
+ path: ffrunner.exe
0 commit comments