From 3766e5780e41015277e95c9aff757afc8eb414ec Mon Sep 17 00:00:00 2001 From: irongut Date: Thu, 7 Oct 2021 14:52:19 +0100 Subject: [PATCH] add manual testing workflows --- .github/workflows/test-linux.yml | 18 ++++++++++++++++++ .github/workflows/test-macos.yml | 18 ++++++++++++++++++ .github/workflows/test-windows.yml | 18 ++++++++++++++++++ 3 files changed, 54 insertions(+) create mode 100644 .github/workflows/test-linux.yml create mode 100644 .github/workflows/test-macos.yml create mode 100644 .github/workflows/test-windows.yml diff --git a/.github/workflows/test-linux.yml b/.github/workflows/test-linux.yml new file mode 100644 index 0000000..e61d500 --- /dev/null +++ b/.github/workflows/test-linux.yml @@ -0,0 +1,18 @@ +name: Test Linux Runner + +on: + workflow_dispatch: + branches: [master] +permissions: + contents: read + +jobs: + test: + runs-on: ubuntu-latest + name: CI Build + steps: + - name: Test Action + uses: irongut/CodeCoverageSummary@master + with: + filename: '/app/sample.coverage.xml' + badge: 'true' diff --git a/.github/workflows/test-macos.yml b/.github/workflows/test-macos.yml new file mode 100644 index 0000000..7477989 --- /dev/null +++ b/.github/workflows/test-macos.yml @@ -0,0 +1,18 @@ +name: Test MacOS Runner + +on: + workflow_dispatch: + branches: [master] +permissions: + contents: read + +jobs: + test: + runs-on: macos-latest + name: CI Build + steps: + - name: Test Action + uses: irongut/CodeCoverageSummary@master + with: + filename: '/app/sample.coverage.xml' + badge: 'true' diff --git a/.github/workflows/test-windows.yml b/.github/workflows/test-windows.yml new file mode 100644 index 0000000..44eb13c --- /dev/null +++ b/.github/workflows/test-windows.yml @@ -0,0 +1,18 @@ +name: Test Windows Runner + +on: + workflow_dispatch: + branches: [master] +permissions: + contents: read + +jobs: + test: + runs-on: windows-latest + name: CI Build + steps: + - name: Test Action + uses: irongut/CodeCoverageSummary@master + with: + filename: '/app/sample.coverage.xml' + badge: 'true'