Skip to content

Commit

Permalink
Add build on push workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
localghost committed Mar 31, 2024
1 parent 52b0ef3 commit e872d2b
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Go

on: [push]

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
go-version: ['1.22']

steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: go build -v ./...

0 comments on commit e872d2b

Please sign in to comment.