Skip to content

Commit 1cd6d8f

Browse files
committed
Switch to GitHub Actions
1 parent f11fa28 commit 1cd6d8f

File tree

2 files changed

+23
-16
lines changed

2 files changed

+23
-16
lines changed

.github/workflows/test.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: test
2+
3+
on:
4+
push:
5+
tags:
6+
- v*
7+
branches:
8+
- main
9+
pull_request:
10+
11+
permissions:
12+
contents: read
13+
14+
jobs:
15+
test:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: actions/checkout@v3
19+
- uses: actions/setup-go@v3
20+
with:
21+
go-version-file: go.mod
22+
cache: true
23+
- run: go test -v ./...

.travis.yml

-16
This file was deleted.

0 commit comments

Comments
 (0)