2023-05-09 19:41:56 +02:00

23 lines
447 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@v3
- 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/* . && ls -al"