diff options
author | Damien George <damien@micropython.org> | 2020-11-30 10:33:46 +1100 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2020-11-30 10:48:41 +1100 |
commit | f7225d1c9527c9839d80b8f73641ddb4ebbe6105 (patch) | |
tree | cdd520ded2697a79ea6bd8ba5e4f6fdfdadaaa86 /.github | |
parent | 2f723d83c0b30a272d0ef41e8b7eda729de1e0e0 (diff) | |
download | micropython-f7225d1c9527c9839d80b8f73641ddb4ebbe6105.tar.gz micropython-f7225d1c9527c9839d80b8f73641ddb4ebbe6105.zip |
github/workflows: Run unix and qemu-arm workflows when tests change.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ports_qemu-arm.yml | 3 | ||||
-rw-r--r-- | .github/workflows/ports_unix.yml | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/ports_qemu-arm.yml b/.github/workflows/ports_qemu-arm.yml index f456dfd74a..8d144ca3cb 100644 --- a/.github/workflows/ports_qemu-arm.yml +++ b/.github/workflows/ports_qemu-arm.yml @@ -11,6 +11,7 @@ on: - 'lib/**' - 'drivers/**' - 'ports/qemu-arm/**' + - 'tests/**' jobs: build_and_test: @@ -19,7 +20,7 @@ jobs: - uses: actions/checkout@v2 - name: Install packages run: source tools/ci.sh && ci_qemu_arm_setup - - name: Build + - name: Build and run test suite run: source tools/ci.sh && ci_qemu_arm_build - name: Print failures if: failure() diff --git a/.github/workflows/ports_unix.yml b/.github/workflows/ports_unix.yml index 385b2c008a..552fd72d84 100644 --- a/.github/workflows/ports_unix.yml +++ b/.github/workflows/ports_unix.yml @@ -11,6 +11,7 @@ on: - 'lib/**' - 'examples/**' - 'ports/unix/**' + - 'tests/**' jobs: minimal: |