Skip to content

Commit

Permalink
feat: add github build job
Browse files Browse the repository at this point in the history
  • Loading branch information
Valkyrie00 committed Feb 24, 2025
1 parent 78f00ee commit d710fdc
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,17 @@ jobs:
uses: golangci/golangci-lint-action@v6
with:
version: v1.63.4
skip-cache: true
skip-cache: true

build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: stable
- name: Get dependencies
run: go mod download
- name: Build
run: go build -v ./

0 comments on commit d710fdc

Please sign in to comment.