mirror of
https://github.com/budtmo/docker-android.git
synced 2025-12-08 18:25:50 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
26 lines
521 B
YAML
26 lines
521 B
YAML
name: Run Test
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build_and_test:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- name: Checkout the repo
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Build base image
|
|
run: script -e -c "./app.sh build base test"
|
|
|
|
- name: Build emulator image and run unit-test
|
|
run: script -e -c "./app.sh test emulator test 11.0 && sudo mv tmp/* ."
|
|
|
|
- name: Publish test result
|
|
run: bash <(curl -s https://codecov.io/bash)
|