Skip to content

Commit

Permalink
Add CI using GitHub Actions (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
daenney authored Dec 11, 2020
1 parent 474204c commit 1d5faf3
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: CI
on:
pull_request:
paths-ignore:
- 'README.md'
- 'LICENSE'
- '.gitignore'
branches:
- master
push:
paths-ignore:
- 'README.md'
- 'LICENSE'
- '.gitignore'
branches:
- master

jobs:
test:
name: Run the tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '1.15.6'
- name: Run GDQ tests
run: |
go test -v

0 comments on commit 1d5faf3

Please sign in to comment.