Bump gevent from 24.11.1 to 25.9.1 #725
This file contains hidden or 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: Relation Engine test and deploy | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- ready_for_review | |
jobs: | |
run_tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout git repo | |
uses: actions/checkout@v4 | |
- name: run tests | |
shell: bash | |
env: | |
GITHUB_ACTIONS_CI: 1 | |
run: | | |
docker compose build | |
docker compose run re_api sh scripts/run_tests.sh | |
docker compose down --remove-orphans | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v5 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
fail_ci_if_error: true |