Skip to content

Commit

Permalink
ci: Split out linting from testing (#743)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebrandon1 authored Nov 1, 2024
1 parent 85e0836 commit 774d4f7
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
- 'release-\d.\d\d'

jobs:
build:
lint:
runs-on: ubuntu-22.04
env:
SHELL: /bin/bash
Expand All @@ -27,6 +27,19 @@ jobs:
- name: Run lint
run: make lint

test:
runs-on: ubuntu-22.04
env:
SHELL: /bin/bash

steps:
- name: Set up Go 1.23
uses: actions/setup-go@v5
with:
go-version: 1.23.2

- uses: actions/checkout@v4

- name: Run unit tests
run: make test

Expand Down

0 comments on commit 774d4f7

Please sign in to comment.