From a96a83a4bff56f8813fbb0c6d4325e8975c52071 Mon Sep 17 00:00:00 2001 From: Mani Arasteh Date: Sat, 1 Jun 2024 19:07:57 +0330 Subject: [PATCH] Create pages.yml --- .github/workflows/pages.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/pages.yml diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml new file mode 100644 index 0000000..ffd4d3e --- /dev/null +++ b/.github/workflows/pages.yml @@ -0,0 +1,17 @@ +name: Go on Pages +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Setup Go + uses: actions/setup-go@v5 + with: + go-version: '1.21.x' + - name: Install dependencies + run: go get . + - name: Build + run: go build -v main.go