Skip to content

Commit

Permalink
Merge pull request #43 from ngrok/stacks/ci
Browse files Browse the repository at this point in the history
feat(ci): Add CI tests
  • Loading branch information
jonstacks authored Dec 17, 2024
2 parents 267aedb + 30342c4 commit 01b9e6e
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: CI
on:
push:
pull_request:

jobs:
test:
name: "Test (Go: ${{matrix.go}})"
runs-on: ubuntu-latest
timeout-minutes: 20
strategy:
fail-fast: false
matrix:
go:
- '1.21'
- '1.22'
- '1.23'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Build
run: make build
- name: Test
run: make test

0 comments on commit 01b9e6e

Please sign in to comment.