Skip to content

Bump golang.org/x/net from 0.37.0 to 0.38.0 in /examples #647

Bump golang.org/x/net from 0.37.0 to 0.38.0 in /examples

Bump golang.org/x/net from 0.37.0 to 0.38.0 in /examples #647

Workflow file for this run

name: Run Tests
# Triggers the workflow on push or pull request events
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
go: [ '1.23', '1.24' ]
runs-on: ubuntu-latest
name: Go ${{ matrix.go }} Tests
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
check-latest: true
- name: Run all tests
run: go test -v github.com/knadh/koanf...
- name: Run Coverage
run: go test -v -cover ./...