Skip to content

Commit

Permalink
fix: tests are not running
Browse files Browse the repository at this point in the history
  • Loading branch information
darkweaver87 committed Jul 25, 2024
1 parent f7c638f commit 31c26d3
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ on:
branches:
- main
paths:
- '**.yaml'
- '.github/workflows/test.yaml'
- 'src/manifests/**.yaml'
- 'api-management/**.yaml'
- 'api-gateway/**.yaml'
- 'tests/**.go'

env:
API_TOKEN: ${{ secrets.API_TOKEN }}
Expand Down Expand Up @@ -54,4 +58,16 @@ jobs:
- name: run tests
working-directory: tests
run: make test-apim

testhelpers:
runs-on: buildjet-2vcpu-ubuntu-2204
steps:
- name: checkout
uses: actions/checkout@v4
- name: set up Go
uses: actions/setup-go@v5
with:
go-version-file: tests/go.mod
cache-dependency-path: tests/go.sum
- name: run tests
working-directory: tests
run: make test-testhelpers

0 comments on commit 31c26d3

Please sign in to comment.