diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 2b89e3a..84bf7d1 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -5,27 +5,26 @@ name: Go on: push: - branches: [ "main" ] + branches: ["main"] pull_request: - branches: [ "main" ] + branches: ["main"] jobs: - build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v4 - - name: Set up Go - uses: actions/setup-go@v5 - with: - go-version: '<2' + - name: Set up Go + uses: actions/setup-go@v5 + with: + go-version: '<2' - - name: Build - run: go build -v ./... + - name: Build + run: go build -v ./... - - name: Test - run: go test -v ./... + - name: Test + run: go test -v ./... - - name: Golangci-lint - uses: golangci/golangci-lint-action@v6.0.1 + - name: Golangci-lint + uses: golangci/golangci-lint-action@v6.0.1