Skip to content

build(deps): bump gopkg.in/ini.v1 from 1.67.0 to 1.67.1 (#36) #85

build(deps): bump gopkg.in/ini.v1 from 1.67.0 to 1.67.1 (#36)

build(deps): bump gopkg.in/ini.v1 from 1.67.0 to 1.67.1 (#36) #85

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.24', '1.25' ]
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up Go
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
with:
go-version: ${{ matrix.go }}
cache: true
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...