Skip to content

Rework to add UK VAT validation and improve error reporting (#6) #55

Rework to add UK VAT validation and improve error reporting (#6)

Rework to add UK VAT validation and improve error reporting (#6) #55

Workflow file for this run

name: build
on: [ push, pull_request ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.21
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
run: go build .
- name: Lint
uses: golangci/[email protected]
- name: Test
run: ./bin/test
- name: Coverage
run: ./bin/coverage