We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92b11ce commit d231691Copy full SHA for d231691
1 file changed
.github/workflows/build-linux-android.yml
@@ -0,0 +1,22 @@
1
+name: Build Linux and Android
2
+
3
+on:
4
+ push:
5
+ branches: [ "2.0-master" ]
6
+ pull_request:
7
8
9
+jobs:
10
11
+ build:
12
13
+ runs-on: ubuntu-focal
14
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ - name: Install dependencies
18
+ run: bash travis/install_dependencies.bash
19
+ - name: Build client
20
+ run: travis/build_client.bash
21
+ - name: Build server
22
+ run: travis/build_and_deploy_server.bash
0 commit comments