Skip to content

Commit

Permalink
github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
halacs committed Nov 15, 2023
1 parent f04082e commit f08d953
Showing 1 changed file with 23 additions and 2 deletions.
25 changes: 23 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
- 'v*.*.*'

jobs:
build:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
Expand All @@ -18,13 +18,34 @@ jobs:
uses: actions/setup-go@v2
with:
go-version: 1.21.4

- name: Lint
run: make lint

build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21.4

- name: Build
run: make build

test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21.4

- name: Test
run: make test

Expand Down

0 comments on commit f08d953

Please sign in to comment.