Skip to content

Commit

Permalink
Migration to Githiub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
MatteoMori8 committed Jul 2, 2024
1 parent d41f2af commit 630aee7
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/push.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: push

on: push

permissions:
contents: read
id-token: write

jobs:
build:
runs-on: ubuntu-latest
env:
GO111MODULE: "on"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: "1.18"
- run: CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o bin/klint .

0 comments on commit 630aee7

Please sign in to comment.