Skip to content

Api key integration test #3

Api key integration test

Api key integration test #3

name: Integration Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_call:
jobs:
integration-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.24'
- name: Run Integration Tests
env:
OMS_PORTAL_API_KEY: ${{ secrets.OMS_PORTAL_API_KEY }}
OMS_PORTAL_API: ${{ secrets.OMS_PORTAL_API }}
run: make test-integration
- name: Upload Test Results
if: always()
uses: actions/upload-artifact@v4
with:
name: integration-test-results
path: |
**/*test*.xml
**/*test*.json
retention-days: 30