Skip to content

Commit

Permalink
gh-actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Grandys committed Sep 14, 2024
1 parent ad30eb8 commit 30fa905
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.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.x' ]

steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
# You can test your matrix by printing the current Go version
- name: CI
run: make build

0 comments on commit 30fa905

Please sign in to comment.