From 231bba2fa17d44c728bf6875c06f2c22c1636288 Mon Sep 17 00:00:00 2001 From: Alfi Maulana Date: Fri, 6 Jan 2023 20:57:40 +0700 Subject: [PATCH] add `test.yml` workflow to test this action --- .github/workflows/test.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..6b116f7 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,16 @@ +name: test +on: + workflow_dispatch: + push: +jobs: + use-action: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v3.2.0 + + - name: Use this action + uses: ./ + + - name: Run build result + run: ./build/hello_world