mirror of
https://github.com/iSoron/uhabits.git
synced 2025-12-08 01:58:52 -06:00
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2 to 3. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
32 lines
598 B
YAML
32 lines
598 B
YAML
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@v3
|
|
|
|
- name: Build project
|
|
run: ./build.sh build
|
|
|
|
- name: Run Android tests
|
|
run: ./build.sh android-tests-parallel 28 29 30 31 32 33
|
|
|
|
- name: Upload artifacts
|
|
if: always()
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: build
|
|
path: |
|
|
build/*log
|
|
uhabits-android/build/outputs
|
|
|