From 46ff95e9bf2215666703a6c9707c86b1ab4b2a78 Mon Sep 17 00:00:00 2001 From: Yajush Sharma Date: Mon, 21 Aug 2023 19:00:11 +0530 Subject: [PATCH] added workflow files --- .github/workflows/test-actions.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/test-actions.yml diff --git a/.github/workflows/test-actions.yml b/.github/workflows/test-actions.yml new file mode 100644 index 0000000..065688d --- /dev/null +++ b/.github/workflows/test-actions.yml @@ -0,0 +1,17 @@ +name: learn-github-actions +run-name: ${{ github.actor }} is learning GitHub Actions +on: [push] +jobs: + check-bats-version: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-go@v4 + with: + go-version: 'stable' + - name: accuknox-install + uses: accuknox/install-action@v0.1.0 + - name: accuknox-report + uses: accuknox/report-action@v0.1.0 + +