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 700898e commit 844d60bCopy full SHA for 844d60b
.github/workflows/build.yml
@@ -0,0 +1,38 @@
1
+name: CI
2
+on: [push]
3
+
4
+jobs:
5
+ ubuntu-latest:
6
+ runs-on: ubuntu-latest
7
8
+ steps:
9
+ - name: Clone
10
+ uses: actions/checkout@v1
11
12
+ - name: Dependencies
13
+ run: |
14
+ sudo apt-get update
15
+ sudo apt-get install build-essential
16
+ sudo apt-get install libsdl2-dev;
17
18
+ - name: Build
19
20
+ make
21
+ make stream
22
23
+ macOS-latest:
24
+ runs-on: macOS-latest
25
26
27
28
29
30
31
32
+ brew update
33
+ brew install sdl2
34
35
36
37
38
0 commit comments