[CI] Add names, generalize testing for future
This commit is contained in:
parent
2661e63600
commit
f669e7a1af
1 changed files with 9 additions and 3 deletions
10
.github/workflows/nightly.yml
vendored
10
.github/workflows/nightly.yml
vendored
|
@ -11,6 +11,7 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
name: Build
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
@ -36,7 +37,10 @@ jobs:
|
||||||
path: app.asar
|
path: app.asar
|
||||||
retention-days: 1
|
retention-days: 1
|
||||||
|
|
||||||
test:
|
|
||||||
|
test-linux:
|
||||||
|
name: Test Linux
|
||||||
|
|
||||||
needs: build
|
needs: build
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
@ -72,8 +76,10 @@ jobs:
|
||||||
[[ $COPROC_PID ]] && kill $COPROC_PID
|
[[ $COPROC_PID ]] && kill $COPROC_PID
|
||||||
timeout-minutes: 3
|
timeout-minutes: 3
|
||||||
|
|
||||||
|
|
||||||
release:
|
release:
|
||||||
needs: test
|
name: Release
|
||||||
|
needs: test-linux
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue