Skip to content

Commit

Permalink
ci(internal): update CI checks to test new internal subpackage
Browse files Browse the repository at this point in the history
Cutting over to Cobra required moving the formerely 'main' package functions into an 'internal' subpackage, this updates the CI checks to run tests in there as well.
  • Loading branch information
gwenwindflower committed Apr 23, 2024
1 parent c009a81 commit 1dd03b0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@ jobs:
uses: actions/[email protected]
with:
go-version: ">=1.22.1"
- name: Run main tests
run: go test
- name: Run `internal` tests
run: |
cd internal
go test
- name: Run `sourcerer` tests
run: |
cd sourcerer
Expand Down

0 comments on commit 1dd03b0

Please sign in to comment.