Skip to content

fix: add origin checking #45

fix: add origin checking

fix: add origin checking #45

Workflow file for this run

name: ci
on:
push:
branches:
- main
paths-ignore:
- 'README.md'
pull_request:
paths-ignore:
- 'README.md'
jobs:
golangci:
strategy:
matrix:
go-version: [1.16.x]
os: [macos-latest, ubuntu-latest]
name: golangci-lint
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: golangci-lint
uses: golangci/golangci-lint-action@v2
with:
version: v1.29
test:
strategy:
matrix:
go-version: [1.16.x]
os: [macos-latest, ubuntu-latest]
name: unit test
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- run: go test -v ./...