Skip to content

Commit

Permalink
GitHub Actions: initial CI config
Browse files Browse the repository at this point in the history
  • Loading branch information
dolmen committed Nov 2, 2023
1 parent 1e6e106 commit 1e842bf
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Go
on: [ push, pull_request ]
jobs:

build:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
go:
- stable
- oldstable
steps:

- name: Check out code
uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
id: go

- name: Test
run: go test -v ./...

0 comments on commit 1e842bf

Please sign in to comment.