Enable yaml checks in CI #106
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: isotovideo - check all test modules | |
# yamllint disable-line rule:truthy | |
on: [push, pull_request] | |
jobs: | |
test: | |
# "ubuntu-latest" at time of writing 2020-12-14 is Ubuntu 18.04 showing a | |
# network problem "level=error msg="could not find slirp4netns, the | |
# network namespace won't be configured: exec: \"slirp4netns\": executable | |
# file not found in $PATH"" | |
# which can be fixed with a more recent version of Ubuntu explicitly | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run isotovideo against test code, fail if any test module failed | |
run: podman run --rm -it -v .:/tests:Z --entrypoint '' registry.opensuse.org/devel/openqa/containers/isotovideo:qemu-x86-jq /bin/sh -c 'isotovideo --exit-status-from-test-results qemu_no_kvm=1 casedir=/tests' |