Test cases for text_vec_rep_paraphrase_lxml operator #421 #405
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: Run tests on PR | |
permissions: | |
contents: read | |
on: | |
pull_request: | |
branches: | |
- main | |
- development | |
- hotfix | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- ready_for_review | |
jobs: | |
test: | |
if: github.event.pull_request.draft == false | |
name: Run tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Build container for tests | |
run: docker compose -f ./.ci/docker-compose.yml -p ci build | |
- name: Launch containers to run tests | |
id: vars | |
run: | | |
docker compose -f ./.ci/docker-compose.yml -p ci up -d sut | |
docker logs -f ci-sut-1 | |
echo "sut_output=$(docker wait ci-sut-1)" >> $GITHUB_OUTPUT | |
- name: Check failure | |
run: | | |
if [ ${{ steps.vars.outputs.sut_output }} != 0 ]; then | |
echo ${{ steps.vars.outputs.sut_output }} | |
exit 1 | |
fi |