mirror of
https://github.com/jakejarvis/npqueue.git
synced 2025-04-26 08:05:21 -04:00
27 lines
472 B
YAML
27 lines
472 B
YAML
name: Test PR
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v1
|
|
- name: Lint
|
|
uses: actions-contrib/golangci-lint@master
|
|
with:
|
|
args: run
|
|
- name: Setup Go 1.13
|
|
uses: actions/setup-go@v1
|
|
with:
|
|
go-version: 1.13
|
|
id: go
|
|
- name: Get dependencies
|
|
run: go mod download
|
|
- name: Build
|
|
run: go build -v .
|