Skip to content

Commit

Permalink
ci: ✨ added github actions ci
Browse files Browse the repository at this point in the history
  • Loading branch information
paologaleotti committed Feb 22, 2024
1 parent 475cc10 commit f01cc39
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Blaze lint and build

on:
push:
branches: [master]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Setup Go environment
uses: actions/setup-go@v3
with:
go-version: 1.21

- name: Run golangci-lint
uses: golangci/golangci-lint-action@v4

- name: Build the application
run: make build

0 comments on commit f01cc39

Please sign in to comment.