From 874573ac5bfcf4a81f191321948637c6957865c0 Mon Sep 17 00:00:00 2001 From: lyx0 Date: Tue, 8 Aug 2023 01:07:54 +0200 Subject: [PATCH] fix git workflow file --- .github/workflows/go.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 5dd6b7a..425fb85 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -2,24 +2,25 @@ name: Go on: push: - branches: [ master, rewrite ] + branches: [ "master", "rewrite" ] pull_request: - branches: [ master, rewrite ] + branches: [ "master", "rewrite" ] jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v4 with: - go-version: 1.20 + go-version: '1.20' - name: Build run: go build -v ./... - name: Test run: go test -v ./... +