This repository was archived by the owner on Jul 23, 2024. It is now read-only.
Releasing GOBL 0.77 #296
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Go | |
on: [push] | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v1 | |
with: | |
go-version: "1.21" | |
id: go | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Install Dependencies | |
env: | |
GOPROXY: https://proxy.golang.org,direct | |
run: go mod download | |
- name: Test | |
run: go test -tags unit -race ./... |