Skip to content

Merge pull request #257 from Syuparn/fix-wapm #715

Merge pull request #257 from Syuparn/fix-wapm

Merge pull request #257 from Syuparn/fix-wapm #715

Workflow file for this run

name: Test
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.20
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Build
run: go build
- name: GoTest
run: go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...
- name: PangaeaTest
run: ./pangaea test tests/
- name: Upload coverage
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}