Skip to content

Merge pull request #18 from tomtwinkle/enhancement/excelize-update #48

Merge pull request #18 from tomtwinkle/enhancement/excelize-update

Merge pull request #18 from tomtwinkle/enhancement/excelize-update #48

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Get dependencies
run: |
go install gotest.tools/gotestsum@latest
go get -v -t -d ./...
- name: Test code
run: gotestsum --junitfile unit-tests.xml -- -v -race ./...