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 095d14c commit 551e191Copy full SHA for 551e191
.github/workflows/test.yml
@@ -0,0 +1,21 @@
1
+name: Run tests
2
+on:
3
+ push:
4
+ branches-ignore:
5
+ - 'gh-pages'
6
+ pull_request:
7
8
9
+
10
+jobs:
11
+ test:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Install dependencies
15
+ run: sudo apt-get install shunit2
16
+ - name: Check out branch
17
+ uses: actions/checkout@v2
18
+ - name: Create the minecraft user
19
+ run: sudo adduser --system minecraft
20
+ - name: Run tests
21
+ run: sudo /bin/bash ./test.sh
0 commit comments