feat: Filter users by beta status #9098
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
# SPDX-FileCopyrightText: Copyright DB InfraGO AG and contributors | |
# SPDX-License-Identifier: CC0-1.0 | |
name: tests | |
on: | |
push: | |
branches: ['**'] | |
tags: ['v*.*.*'] | |
pull_request: | |
branches: [main] | |
jobs: | |
backend: | |
runs-on: ubuntu-latest | |
name: Run pytest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install python | |
uses: actions/setup-python@v5 | |
with: | |
cache: pip | |
cache-dependency-path: ./backend/pyproject.toml | |
python-version: '3.11' | |
- name: Install dependencies | |
run: | | |
pip install -e "./backend[dev]" | |
- name: Run pytest | |
working-directory: backend | |
run: | | |
pytest --cov --cov-report term --cov-report xml | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v5 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |