Skip to content

Bump golang.org/x/net from 0.20.0 to 0.21.0 #331

Bump golang.org/x/net from 0.20.0 to 0.21.0

Bump golang.org/x/net from 0.20.0 to 0.21.0 #331

Workflow file for this run

name: Build CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
go-version: [1.21.x, 1.19.x, 1.20.x]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Get Go dependencies
run: go get -v -t -d ./...
- name: Build gocomply_xsd2go
run: go build -v ./cli/gocomply_xsd2go
- name: Unit tests
run: go test ./...