Skip to content

Commit

Permalink
.github: test in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
nvartolomei committed Mar 28, 2024
1 parent 99de2ad commit 1bfaab4
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Go

on:
push:
branches:
- main
pull_request: {}

jobs:
build:

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

steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Display Go version
run: go version
- name: Test & Build
run: make

0 comments on commit 1bfaab4

Please sign in to comment.