Skip to content

chore(deps): bump actions/setup-go from 4 to 5 (#64) #108

chore(deps): bump actions/setup-go from 4 to 5 (#64)

chore(deps): bump actions/setup-go from 4 to 5 (#64) #108

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
# Getting go version from the go.mod file
go-version-file: 'go.mod'
- run: go version
- name: Check code format
run: if [ "$(gofmt -s -l . | wc -l)" -gt 0 ]; then exit 1; fi
- name: Test all
run: go test -v ./...
# golangci:
# strategy:
# matrix:
# os: [ubuntu-latest]
# runs-on: ${{ matrix.os }}
# steps:
# - uses: actions/checkout@v4
# - name: Set up Go
# uses: actions/setup-go@v5
# with:
# # Getting go version from the go.mod file
# go-version-file: 'go.mod'
# - run: go version
# - name: golangci-lint
# uses: golangci/golangci-lint-action@v2
# with:
# version: v1.44.2