Skip to content

Commit

Permalink
Add GitHub Action (#3)
Browse files Browse the repository at this point in the history
Add GitHub action for golangci-lint to check coding style.
Accorading to https://github.com/marketplace/actions/run-golangci-lint.

Add GitHub action for go build and go test CI
  • Loading branch information
tim-ywliu authored Jan 6, 2022
1 parent 2aa818c commit f59bc4a
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Go

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.14.4'

- name: Build
run: go build -v ./...

- name: Test
run: go test -v ./...
34 changes: 34 additions & 0 deletions .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: golangci-lint

on:
push:
tags:
- v*
branches: [ main ]
pull_request:
branches: [ main ]

jobs:

golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v2
with:
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
version: v1.35.0

# Optional: working directory, useful for monorepos
# working-directory: somedir

# Optional: golangci-lint command line arguments.
# args: --issues-exit-code=0

# Optional: show only new issues if it's a pull request. The default value is `false`.
# only-new-issues: true

# Optional: if set to true then the action will use pre-installed Go
# skip-go-installation: true

0 comments on commit f59bc4a

Please sign in to comment.