Skip to content

Use 6-8-2-3 params insteand of 10-2-1-2 #36

Use 6-8-2-3 params insteand of 10-2-1-2

Use 6-8-2-3 params insteand of 10-2-1-2 #36

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
branches:
- 'main'
pull_request:
jobs:
tests:
strategy:
matrix:
go-version: [ 1.18.x ]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Install Dependencies
run: go mod download
- name: Test
run: go test ./src -race -coverprofile=coverage.cov -covermode=atomic -gcflags=-l
- name: Upload coverage report
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: coverage.cov