Skip to content

Commit

Permalink
migrating to github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
deckarep committed Dec 16, 2021
1 parent fd7989e commit 82e1f83
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 14 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
on: [push, pull_request]
name: CI
jobs:
test:
strategy:
matrix:
go-version: [1.17.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: |
#go vet ./...
go test -race ./...
go test -bench=.
14 changes: 0 additions & 14 deletions .travis.yml

This file was deleted.

0 comments on commit 82e1f83

Please sign in to comment.