chore: Reorg e2e test code to be reused in RAG e2e tests #784
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: unit-tests-ragengine | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: [main] | |
paths-ignore: ["docs/**", "**.md", "**.mdx", "**.png", "**.jpg"] | |
pull_request: | |
branches: [main, release-**] | |
paths-ignore: ["docs/**", "**.md", "**.mdx", "**.png", "**.jpg"] | |
permissions: | |
contents: read | |
packages: write | |
env: | |
GO_VERSION: "1.23" | |
jobs: | |
unit-tests: | |
runs-on: ubuntu-latest | |
environment: unit-tests | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2 | |
with: | |
egress-policy: audit | |
- name: Check out the code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
submodules: true | |
fetch-depth: 0 | |
- name: Run unit tests | |
run: | | |
make rag-service-test | |
- name: Upload Coverage to Codecov | |
uses: codecov/codecov-action@1e68e06f1dbfde0e4cefc87efeba9e4643565303 # v5.1.2 | |
with: | |
fail_ci_if_error: true | |
token: ${{ secrets.CODECOV_TOKEN }} | |
verbose: true |