Some checks are pending
CodeQL / Analyze (csharp) (push) Waiting to run
CodeQL / Analyze (python) (push) Waiting to run
dotnet-build-and-test / paths-filter (push) Waiting to run
dotnet-build-and-test / dotnet-build-and-test (Debug, windows-latest, net9.0) (push) Blocked by required conditions
dotnet-build-and-test / dotnet-build-and-test (Release, integration, true, ubuntu-latest, net10.0) (push) Blocked by required conditions
dotnet-build-and-test / dotnet-build-and-test (Release, integration, true, windows-latest, net472) (push) Blocked by required conditions
dotnet-build-and-test / dotnet-build-and-test (Release, ubuntu-latest, net8.0) (push) Blocked by required conditions
dotnet-build-and-test / dotnet-build-and-test-check (push) Blocked by required conditions
11 lines
350 B
Bash
11 lines
350 B
Bash
uv python install 3.10 3.11 3.12 3.13
|
|
# Create a virtual environment with Python 3.10 (you can change this to 3.11, 3.12 or 3.13)
|
|
PYTHON_VERSION="3.13"
|
|
uv venv --python $PYTHON_VERSION
|
|
# Install AF and all dependencies
|
|
uv sync --dev
|
|
# Install all the tools and dependencies
|
|
uv run poe install
|
|
# Install pre-commit hooks
|
|
uv run poe pre-commit-install
|