Skip to content

build(deps): bump github.com/pelletier/go-toml from 1.9.3 to 1.9.5 #845

build(deps): bump github.com/pelletier/go-toml from 1.9.3 to 1.9.5

build(deps): bump github.com/pelletier/go-toml from 1.9.3 to 1.9.5 #845

Workflow file for this run

name: Go
on:
push:
pull_request:
jobs:
build:
name: "Build"
runs-on: ubuntu-latest
strategy:
matrix:
go: ["1.18", "1.19", "1.20", "1.21"]
steps:
- name: Updating ...
run: sudo apt-get -qq update
- uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Go build (source)
run: go build -v ./...
- name: Go build (tests)
run: go test -v ./...
- name: Go vet
run: go vet -v ./...