Skip to content

Add package name when using NewDecoder function (#61) #30

Add package name when using NewDecoder function (#61)

Add package name when using NewDecoder function (#61) #30

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
strategy:
matrix:
go-version: ["1.20"]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Test
run: go test -race -v ./... -coverprofile=coverage.txt -covermode=atomic
- name: Codecov
uses: codecov/codecov-action@v1.2.1
with:
files: coverage.txt
backward-compatibility-test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.18, 1.19]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 1
path: go/src/github.com/jszwec/csvutil
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Test
run: go test -race -v ./...
env:
GOPATH: /home/runner/work/csvutil/csvutil/go
working-directory: go/src/github.com/jszwec/csvutil