Skip to content

Commit

Permalink
Split out even more
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamgilbert committed Jun 20, 2023
1 parent 907ee98 commit 42208c6
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Test Coverage
on: [pull_request]

jobs:
build:
coverage:

runs-on: ubuntu-latest
steps:
Expand Down
16 changes: 12 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,19 @@ name: Go build & test
on: [push]

jobs:
build:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}

- name: Test
run: make test
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -16,6 +27,3 @@ jobs:

- name: Build
run: make build

- name: Test
run: make test

0 comments on commit 42208c6

Please sign in to comment.