Skip to content

Commit

Permalink
CI: test github CI
Browse files Browse the repository at this point in the history
  • Loading branch information
lostdusty authored Jan 26, 2024
1 parent 3aec9ea commit 23f8d9e
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
on: [push, pull_request]
name: Build
jobs:
test-nocache:
strategy:
matrix:
go-version: [ 1.21.x ]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
cache: false
- run: go build -o "${{ matrix.os }}" ./...

0 comments on commit 23f8d9e

Please sign in to comment.