feat: release a new preset version that supports vllm #98
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.22" | |
jobs: | |
unit-tests: | |
runs-on: ubuntu-latest | |
environment: unit-tests | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1 | |
with: | |
egress-policy: audit | |
- name: Check out the code | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
with: | |
submodules: true | |
fetch-depth: 0 | |
- name: Run unit tests | |
run: | | |
make rag-service-test |