Skip to content

Change table view

Change table view #20

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
jobs:
golang-test:
strategy:
matrix:
go-version: [1.20.x]
os: [ubuntu-latest]
name: lint
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: golangci-lint
uses: golangci/golangci-lint-action@v2
with:
version: latest
- name: testing
run: go test ./... -coverprofile=coverage.out
- name: create report
uses: k1LoW/octocov-action@v0