Skip to content

Commit

Permalink
Migrate CI to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
g3kk0 committed May 10, 2022
1 parent 02e874c commit 4566b8f
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 4566b8f

Please sign in to comment.