feat: update webhook products in batch #3829
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
# This workflow will install Python dependencies, run tests and lint with a single version of Python | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: Python application | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: Test | |
strategy: | |
max-parallel: 1 | |
matrix: | |
pg-version: ['14'] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v1 | |
- name: Install PostgreSQL | |
uses: harmon758/postgresql-action@v1 | |
with: | |
postgresql version: ${{ matrix.pg-version }} | |
postgresql db: marketplace | |
postgresql user: marketplace | |
postgresql password: marketplace | |
- name: Install Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: '3.9.x' | |
- name: Initialize environment | |
run: | | |
pip install --upgrade pip poetry | |
poetry install | |
poetry run python contrib/gen_env.py | |
- name: Validate code syntax and unit tests | |
run: | | |
poetry run python contrib/code_check.py | |
poetry run coverage xml | |
- name: Upload coverage report to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
flags: annotations,path,test_changes | |
fail_ci_if_error: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Check coverage status | |
run: | | |
# Get the coverage of the last commit from the codecov API | |
poetry run python contrib/compare_coverage.py |