Skip to content

Commit 341ce0e

Browse files
committed
Use GitHub Actions for testing
1 parent eb962d8 commit 341ce0e

File tree

2 files changed

+16
-26
lines changed

2 files changed

+16
-26
lines changed

.circleci/config.yml

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

.github/workflows/test.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Based on https://github.com/mvdan/github-actions-golang
2+
on: [push, pull_request]
3+
name: Test
4+
jobs:
5+
test:
6+
strategy:
7+
matrix:
8+
go-version: [1.19.x, 1.20.x]
9+
os: [ubuntu-latest, macos-latest, windows-latest]
10+
runs-on: ${{ matrix.os }}
11+
steps:
12+
- uses: actions/setup-go@v3
13+
with:
14+
go-version: ${{ matrix.go-version }}
15+
- uses: actions/checkout@v3
16+
- run: go test ./...

0 commit comments

Comments
 (0)