Skip to content

feat: proper usage of special reranker tokens #1934

feat: proper usage of special reranker tokens

feat: proper usage of special reranker tokens #1934

Workflow file for this run

name: "Build and test"
on:
push:
permissions:
contents: write
pages: write
id-token: write
jobs:
linting:
uses: ./.github/workflows/linting.yml
build:
uses: ./.github/workflows/build.yml
with:
upload_artifacts: true
needs: [linting]
test:
uses: ./.github/workflows/test.yml
needs: [linting]
secrets:
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
release:
needs: [build] # [build, test]
uses: ./.github/workflows/release.yml
docs:
if: github.ref == 'refs/heads/main'
uses: ./.github/workflows/docs.yml