Skip to content

Commit

Permalink
Improve action running and new go versions (#92)
Browse files Browse the repository at this point in the history
Instead of running push and PR, just run PR.
Add go 1.14 and 1.15.
  • Loading branch information
ferhatelmas authored Sep 18, 2020
1 parent 7c02fc7 commit 213da83
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
name: build
on: [push, pull_request]
on:
push:
branches:
- master
pull_request:
jobs:
test-build:
name: Test & Build
runs-on: ubuntu-latest
strategy:
matrix:
goVer: [1.12, 1.13]
goVer: [1.12, 1.13, 1.14, 1.15]
steps:
- name: Set up Go ${{ matrix.goVer }}
uses: actions/setup-go@v1
Expand Down

0 comments on commit 213da83

Please sign in to comment.