Enable perlcritic checks in CI #72
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 - github action example | |
# yamllint disable-line rule:truthy | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
container: | |
image: "registry.opensuse.org/devel/openqa/containers/isotovideo:qemu-x86-jq" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install jq | |
run: zypper -n in jq | |
- name: Run isotovideo against test code | |
run: isotovideo qemu_no_kvm=1 casedir=. | |
- name: fail if any test module failed | |
run: jq .result testresults/result-*.json | grep -v ok && echo "Test modules failed" && exit 1 |