From 79020988375479af2dc3f1e5e1ee7996df30d5e1 Mon Sep 17 00:00:00 2001 From: Tyrel Souza Date: Sun, 23 Jul 2023 00:10:20 -0400 Subject: [PATCH] init --- action.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 action.yml diff --git a/action.yml b/action.yml new file mode 100644 index 0000000..5cc8889 --- /dev/null +++ b/action.yml @@ -0,0 +1,13 @@ +name: 'Test Go Action' +on: [push] +jobs: + use-go-action: + runs-on: ubuntu-latest + steps: + - name: Setup Go + uses: actions/setup-go@v3 + with: + go-version: '1.20' + + - name: Use Go Action + uses: https://gitea.tyrel.dev/tyrel/simple-go-action