Skip to content

Commit 795472f

Browse files
authored
Merge pull request #84 from r3labs/github-actions
Migrate CI to GitHub Actions
2 parents 02e874c + bfef716 commit 795472f

File tree

2 files changed

+18
-8
lines changed

2 files changed

+18
-8
lines changed

.github/workflows/ci.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: CI
2+
3+
on: [push, workflow_dispatch]
4+
5+
jobs:
6+
Test:
7+
runs-on: ubuntu-latest
8+
9+
container:
10+
image: golang
11+
12+
steps:
13+
- uses: actions/checkout@v2
14+
15+
- name: Test
16+
run: |
17+
make deps
18+
go test ./...

.travis.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)