From 49cd88776f748d48752afe7bb492b3f2efbc78b5 Mon Sep 17 00:00:00 2001 From: Valtteri Lehtinen Date: Fri, 12 Apr 2024 12:58:07 +0300 Subject: [PATCH] Add tester workflow --- .github/workflows/main.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..5627610 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,18 @@ +on: [push] + +jobs: + hello_world_job: + runs-on: ubuntu-latest + name: A job to test the OpalOPC Scan Action + steps: + + - name: OpalOPC Scan Action step + uses: Molemmat-Oy/opalopc-scan-action@development + with: + target-url: 'opc.tcp://scanme.opalopc.com:53530' + license-key: ${{ secrets.opalopc-license-key }} + + - name: Verify the reports exist + run: | + ls -la + cat opalopc-report.sarif opalopc-report.html