From b6d6439b9c461e183f5693cc977211c1cd62d774 Mon Sep 17 00:00:00 2001 From: JChicomeSan <57263663+ChicomeMX7@users.noreply.github.com> Date: Mon, 11 Sep 2023 23:57:04 -0600 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 21 +++++++++++++++++++++ 1 file changed, 21 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..22f2dea --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,21 @@ +name: Go-package + +on: [push] + # merge: + # branches: + # - 'main' + +jobs: + build: + + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version: '1.18' + + - name: Build + run: go build -v ./...