Skip to content

Commit

Permalink
Add GHI CI configuration.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmalloc committed Apr 19, 2020
1 parent f38a7f4 commit 25641a0
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CI
on:
push:
branches:
- '*'
pull_request:
schedule:
- cron: 0 14 * * 0
jobs:
ci:
name: Continuous Integration
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: 1.13
id: go
- name: Checkout
uses: actions/checkout@v1
- name: Make
run: make ci
- name: Upload Coverage Reports
if: success()
run: |
test ! -z "$TOKEN"
bash <(curl -s https://codecov.io/bash) -t "$TOKEN" -B "${{ github.ref }}"
env:
TOKEN: "${{ secrets.CODECOV_TOKEN }}"

0 comments on commit 25641a0

Please sign in to comment.