Skip to content

Commit

Permalink
Merge pull request #84 from r3labs/github-actions
Browse files Browse the repository at this point in the history
Migrate CI to GitHub Actions
  • Loading branch information
g3kk0 authored May 10, 2022
2 parents 02e874c + bfef716 commit 795472f
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 8 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: CI

on: [push, workflow_dispatch]

jobs:
Test:
runs-on: ubuntu-latest

container:
image: golang

steps:
- uses: actions/checkout@v2

- name: Test
run: |
make deps
go test ./...
8 changes: 0 additions & 8 deletions .travis.yml

This file was deleted.

0 comments on commit 795472f

Please sign in to comment.