ci: disable Codecov commenting #18
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: Test | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
# For OIDC code coverage upload | |
permissions: | |
id-token: write | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v3" | |
- uses: "actions/setup-python@v4" | |
with: | |
python-version: "3.11" | |
- name: "Install Python dependencies" | |
run: | | |
pip install -r requirements_test.txt | |
- name: "Install and run pre-commit hooks" | |
run: | | |
pre-commit install --install-hooks | |
pre-commit run --all-files | |
- name: "Start services" | |
run: | | |
./start-services.sh | |
- name: "Test" | |
run: | | |
./test_app.sh | |
- uses: codecov/codecov-action@v4 | |
with: | |
use_oidc: true |