mirror of
https://github.com/dolphin-emu/analytics-ingest.git
synced 2026-01-31 01:15:21 +01:00
Actions: Convert run-tests to use uv
This commit is contained in:
36
.github/workflows/run-tests.yml
vendored
36
.github/workflows/run-tests.yml
vendored
@@ -9,41 +9,21 @@ permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
# Inspiration taken from https://jacobian.org/til/github-actions-poetry/
|
||||
run-tests:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Set up Python 3.10
|
||||
uses: actions/setup-python@v3
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: "3.10"
|
||||
python-version-file: "pyproject.toml"
|
||||
|
||||
- name: Cache Poetry install
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: ~/.local
|
||||
key: poetry-1.3.0-0
|
||||
- name: Install uv
|
||||
uses: astral-sh/setup-uv@v6
|
||||
|
||||
- uses: snok/install-poetry@v1
|
||||
with:
|
||||
version: 1.3.0
|
||||
virtualenvs-create: true
|
||||
virtualenvs-in-project: true
|
||||
|
||||
- name: Cache dependencies
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: .venv
|
||||
key: pydeps-${{ hashFiles('**/poetry.lock') }}
|
||||
|
||||
- name: Install dependencies (if uncached)
|
||||
run: poetry install --no-interaction --no-root
|
||||
if: steps.cache-deps.outputs.cache-hit != 'true'
|
||||
|
||||
- name: Install analytics-ingest
|
||||
run: poetry install --no-interaction
|
||||
- name: Sync dependencies
|
||||
run: uv sync --locked --all-extras --dev
|
||||
|
||||
- name: Check coding style
|
||||
run: poetry run black --check .
|
||||
run: uv run black --check .
|
||||
|
||||
Reference in New Issue
Block a user