mirror of https://github.com/iSoron/uhabits.git
Compare commits
No commits in common. '543be48cb18c63a2e60413983517c466bdb86a27' and '5aa8744ef4c8e391c875bbb482e3e79740b5fd81' have entirely different histories.
543be48cb1
...
5aa8744ef4
@ -0,0 +1,31 @@
|
|||||||
|
name: Build & Test
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
paths-ignore:
|
||||||
|
- '**.md'
|
||||||
|
push:
|
||||||
|
paths-ignore:
|
||||||
|
- '**.md'
|
||||||
|
jobs:
|
||||||
|
Test:
|
||||||
|
runs-on: self-hosted
|
||||||
|
timeout-minutes: 30
|
||||||
|
steps:
|
||||||
|
- name: Check out source code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Build project
|
||||||
|
run: ./build.sh build
|
||||||
|
|
||||||
|
- name: Run Android tests
|
||||||
|
run: ./build.sh android-tests-parallel 28 29 30 32 33 34
|
||||||
|
|
||||||
|
- name: Upload artifacts
|
||||||
|
if: always()
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: build
|
||||||
|
path: |
|
||||||
|
build/*log
|
||||||
|
uhabits-android/build/outputs
|
||||||
|
|
Loading…
Reference in new issue