mirror of
https://github.com/jakejarvis/npqueue.git
synced 2026-07-26 10:46:03 -04:00
Test PRs action
This commit is contained in:
@@ -0,0 +1,26 @@
|
|||||||
|
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 .
|
||||||
Reference in New Issue
Block a user