removed templates
This commit is contained in:
@@ -7,16 +7,26 @@ on:
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
setup-python-uv-dependencies:
|
||||
name: Setup Python and UV dependencies
|
||||
uses: ./.gitea/workflows/setup-python-uv-dependencies.yml
|
||||
with:
|
||||
python-version: ${{ vars.PYTHON_VERSION }}
|
||||
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: ${{ inputs.python-version }}
|
||||
|
||||
- name: Install uv
|
||||
run: pip install uv
|
||||
|
||||
- name: Install dependencies
|
||||
env:
|
||||
UV_LINK_MODE: copy
|
||||
run: uv sync
|
||||
|
||||
- name: Run pytest
|
||||
env:
|
||||
PYTHONPATH: .
|
||||
run: pytest
|
||||
run: uv run pytest
|
||||
|
||||
Reference in New Issue
Block a user