Skip to content

Commit 9de9212

Browse files
Create c-cpp.yml for CI build
1 parent 63eae6c commit 9de9212

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/c-cpp.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: C/C++ CI
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
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

Comments
 (0)