Skip to content

fix #69 by making profile_image_uuid nullable (#80) #349

fix #69 by making profile_image_uuid nullable (#80)

fix #69 by making profile_image_uuid nullable (#80) #349

Workflow file for this run

name: CI
on:
push:
branches:
- main
tags:
- "**"
pull_request: {}
env:
COLUMNS: 150
jobs:
lint:
runs-on: ubuntu-latest
name: lint ${{ matrix.python-version }}
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: ./.github/actions/setup-uv
- name: Install dependencies
run: |
uv pip install --system -e ".[linting]"
- uses: pre-commit/[email protected]
with:
extra_args: --all-files --verbose
env:
SKIP: no-commit-to-branch
test:
name: test ${{ matrix.python-version }}
strategy:
fail-fast: false
matrix:
os: [ubuntu, macos, windows]
python-version: ["3.10", "3.11", "3.12", "3.13"]
env:
PYTHON: ${{ matrix.python-version }}
OS: ${{ matrix.os }}
runs-on: ${{ matrix.os }}-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: ./.github/actions/setup-uv
- name: Install dependencies
run: |
uv pip install --system -e ".[testing]"
- name: test
run: make testcov
env:
CONTEXT: ${{ runner.os }}-py${{ matrix.python-version }}-with-deps
- name: upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
files: ./coverage/coverage.xml
flags: unittests
name: codecov-umbrella
fail_ci_if_error: true