We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 563ab1d commit e563778Copy full SHA for e563778
2 files changed
.github/workflows/openwrt-release.yml
@@ -6,12 +6,26 @@ on:
6
push:
7
branches:
8
- main
9
+ pull_request:
10
workflow_dispatch:
11
12
jobs:
13
+ test:
14
+ name: Functional tests
15
+ runs-on: ubuntu-latest
16
+
17
+ steps:
18
+ - name: Checkout repo
19
+ uses: actions/checkout@v4
20
21
+ - name: Run functional tests
22
+ run: bash tests/run_tests.sh
23
24
build:
25
name: Build for ${{ matrix.version }} / ${{ matrix.target }}
26
+ needs: test
27
runs-on: ubuntu-latest
28
+ if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
29
env:
30
REPO_APK_KEY: ${{ secrets.REPO_APK_KEY }}
31
0 commit comments