Bump sentry-sdk from 1.32.0 to 1.34.0 #2232
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: Lint and test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
merge_group: | |
env: | |
POETRY_VERSION: "1.6.1" | |
NODE_VERSION: "18" | |
jobs: | |
test-python: | |
runs-on: ubuntu-latest | |
# TODO: fix postgresql tests, oidc_provider fails | |
# services: | |
# db: | |
# image: postgres:latest | |
# environment: | |
# POSTGRES_USER: postgres | |
# POSTGRES_DB: onlineweb4 | |
# POSTGRES_PASSWORD: postgres | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Cache python packages | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pypoetry | |
key: ${{ runner.os }}-poetry-${{ hashFiles('**/poetry.lock') }} | |
restore-keys: | | |
${{ runner.os }}-poetry- | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
cache: 'npm' | |
- name: Set up Python ${{ env.PYTHON_VERSION }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version-file: '.python-version' | |
- name: Install Poetry | |
run: pip install poetry==${{ env.POETRY_VERSION }} | |
- name: Install python dependencies | |
run: poetry install --no-interaction --no-ansi | |
- name: Install node dependencies | |
run: npm ci | |
- name: npm build | |
run: npm run build | |
- name: Python tests | |
env: | |
OW4_DJANGO_STRIPE_PUBLIC_KEY_ARRKOM: ${{ secrets.STRIPE_PUBLIC_KEY_ARRKOM }} | |
OW4_DJANGO_STRIPE_PUBLIC_KEY_PROKOM: ${{ secrets.STRIPE_PUBLIC_KEY_PROKOM }} | |
OW4_DJANGO_STRIPE_PUBLIC_KEY_TRIKOM: ${{ secrets.STRIPE_PUBLIC_KEY_TRIKOM }} | |
OW4_DJANGO_STRIPE_PRIVATE_KEY_ARRKOM: ${{ secrets.STRIPE_PRIVATE_KEY_ARRKOM }} | |
OW4_DJANGO_STRIPE_PRIVATE_KEY_PROKOM: ${{ secrets.STRIPE_PRIVATE_KEY_PROKOM }} | |
OW4_DJANGO_STRIPE_PRIVATE_KEY_TRIKOM: ${{ secrets.STRIPE_PRIVATE_KEY_TRIKOM }} | |
# TODO: see service todo | |
# DATABASE_URL: postgres://postgres:postgres@db:5432/onlineweb4 | |
run: poetry run tox -e tests | |
- uses: codecov/codecov-action@v3 | |
lint-python: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Cache python packages | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pypoetry | |
key: ${{ runner.os }}-poetry-${{ hashFiles('**/poetry.lock') }} | |
restore-keys: | | |
${{ runner.os }}-poetry- | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version-file: '.python-version' | |
- name: Install Poetry | |
run: pip install poetry==${{ env.POETRY_VERSION }} | |
- name: Install python dependencies | |
run: poetry install --no-interaction --no-ansi | |
- name: Python linting | |
run: poetry run tox -e flake8 -e isort -e black | |
django-checks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Cache python packages | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pypoetry | |
key: ${{ runner.os }}-poetry-${{ hashFiles('**/poetry.lock') }} | |
restore-keys: | | |
${{ runner.os }}-poetry- | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version-file: '.python-version' | |
- name: Install Poetry | |
run: pip install poetry==${{ env.POETRY_VERSION }} | |
- name: Install python dependencies | |
run: poetry install --no-interaction --no-ansi | |
- name: Check migrations | |
run: poetry run python manage.py makemigrations --check | |
- name: Django check | |
run: poetry run python manage.py check | |
lint-js: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
cache: 'npm' | |
- name: Install node dependencies | |
run: npm ci | |
- name: JS linting | |
run: npm run lint-js | |
- name: less linting | |
run: npm run lint-less |