Skip to content

Merge pull request #6 from worldline-go/public-set-in-data-bag #37

Merge pull request #6 from worldline-go/public-set-in-data-bag

Merge pull request #6 from worldline-go/public-set-in-data-bag #37

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ secrets.GO_VERSION }}
- name: Run coverage
run: go test -race -coverprofile=coverage.txt -covermode=atomic ./...
- name: Upload coverage to Codecov
run: bash <(curl -s https://codecov.io/bash)