Skip to content

chore: change module name, and prepare for release v0.3.202 #1

chore: change module name, and prepare for release v0.3.202

chore: change module name, and prepare for release v0.3.202 #1

Workflow file for this run

name: Go Tests
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
go-version: ['1.14']
steps:
- uses: actions/checkout@v2
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Install dependencies
run: go get ./commercetools
- name: Run tests
run: go test -race -coverprofile=coverage.txt -covermode=atomic -coverpkg=./commercetools ./commercetools
- name: Upload to codecov
uses: codecov/codecov-action@v1.0.6