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 bacf1c5 commit fc774f1Copy full SHA for fc774f1
.github/ci.yml
@@ -0,0 +1,26 @@
1
+name: Build
2
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+ pull_request:
7
8
9
+
10
+jobs:
11
+ build-windows:
12
+ runs-on: windows-latest
13
+ steps:
14
+ - uses: actions/checkout@v2
15
+ - uses: ilammy/msvc-dev-cmd@v1
16
+ - name: Build on Windows
17
+ run: cl main.cpp
18
+ working-directory: ./src
19
20
+ build-linux:
21
+ runs-on: ubuntu-latest
22
23
24
+ - name: Build on Linux
25
+ run: g++ main.cpp -o main
26
0 commit comments