From 749f1f0b1685f549107d4ec11c0acb24e4417c33 Mon Sep 17 00:00:00 2001 From: Jesse Swart Date: Wed, 28 Feb 2024 15:11:37 +0100 Subject: [PATCH] Create main.yml --- .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..e7106d0 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,18 @@ +name: test +on: + workflow_dispatch: + +jobs: + test-action: + runs-on: ubuntu-latest + steps: + - name: checkout + uses: actions/checkout@v3 + + - name: runit + id: runit + uses: ./action + with: + name: 'Jesse' + + - run: echo "The time was ${{ steps.runit.outputs.time }}"