Skip to content

Commit

Permalink
Add unit tests for logs_import and logs_web workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
abaldeweg authored Feb 11, 2025
1 parent d93ab5a commit ff07bd9
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/unit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,29 @@ jobs:
run: |
go mod tidy
go test ./...
test-logs_import:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.23"
- name: Run logs_import tests
working-directory: ./logs_import
run: |
go mod tidy
go test ./...
test-logs_web:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.23"
- name: Run logs_web tests
working-directory: ./logs_web
run: |
go mod tidy
go test ./...

0 comments on commit ff07bd9

Please sign in to comment.