Skip to content

Merge pull request #8 from ShivamKumar2002/master #54

Merge pull request #8 from ShivamKumar2002/master

Merge pull request #8 from ShivamKumar2002/master #54

Workflow file for this run

name: Main CI
on:
push:
branches: "*"
pull_request:
branches: [ master ]
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.13, 1.14, 1.15, ^1.16]
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Run Tests
run: go test -v -timeout 300s -covermode atomic -coverprofile=covprofile ./...
- name: Install goveralls
if: ${{ matrix.go-version == '^1.16' }}
env:
GO111MODULE: off
run: go get github.com/mattn/goveralls
- name: Send coverage
if: ${{ matrix.go-version == '^1.16' }}
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: goveralls -coverprofile=covprofile -service=github
- name: Run Benchmarks
run: go test -timeout 300s -bench=. -benchmem