Skip to content

minor fix: improve the error reporting #434

minor fix: improve the error reporting

minor fix: improve the error reporting #434

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.24.x, 1.23.x, 1.22.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 ./...