Skip to content

Update dorny/test-reporter action to v1.9.1 #23

Update dorny/test-reporter action to v1.9.1

Update dorny/test-reporter action to v1.9.1 #23

Workflow file for this run

name: CI
on:
push:
branches:
- main
tags:
- "*.*.*"
pull_request:
branches:
- main
jobs:
checkov:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.0.2
- name: Get checkov
run: pip install checkov
- name: Get yq yaml parser
run: |
wget -qO /usr/local/bin/yq https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64
chmod a+x /usr/local/bin/yq
- name: Setup BATS
uses: mig4/setup-bats@v1
with:
bats-version: 1.6.0
- name: Generate BATS tests
run: ./infra/generate-bats-tests.sh
- name: Execute BATS tests
continue-on-error: true
run: bats --report-formatter junit infra-tests.bats
- name: Test Report
uses: dorny/test-reporter@31a54ee7ebcacc03a09ea97a7e5465a47b84aea5 # v1.9.1
if: always()
with:
name: checkov results
path: report.xml
reporter: java-junit
fail-on-error: false