Skip to content

Merge pull request #161 from poporonnet/dependabot/go_modules/golang.… #68

Merge pull request #161 from poporonnet/dependabot/go_modules/golang.…

Merge pull request #161 from poporonnet/dependabot/go_modules/golang.… #68

Workflow file for this run

name: CI
on:
push:
branches:
- 'main'
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version-file: ./go.mod
cache: true
- name: Download Dependency
run: go mod download
- name: Compile
run: go build -o kojs .
golangci-lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run linter
uses: reviewdog/action-golangci-lint@v2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
golangci_lint_flags: "--config=./.golangci.yml ./..."
fail_on_error: true
reporter: "github-pr-review"
test:
name: Unit Test
runs-on: ubuntu-latest
needs: [Build]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version-file: ./go.mod
cache: true
- name: Test
run: go test -v ./... -coverprofile=coverage.out -race
- name: report coverage
uses: k1LoW/octocov-action@v0