mirror of
https://github.com/wader/fq.git
synced 2024-11-23 09:56:07 +03:00
30 lines
527 B
YAML
30 lines
527 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
pull_request:
|
|
|
|
env:
|
|
GOLANGCILINT_VERSION: 1.41.1
|
|
|
|
jobs:
|
|
ci:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Setup go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.16.6
|
|
- name: Lint
|
|
uses: golangci/golangci-lint-action@v2
|
|
with:
|
|
version: v${{ env.GOLANGCILINT_VERSION }}
|
|
- name: Test
|
|
run: make test
|