Switch from poetry to uv #1061
Workflow file for this run
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
name: Run Continuous Integration | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
ci: | |
strategy: | |
fail-fast: false | |
runs-on: "ubuntu-latest" | |
timeout-minutes: 15 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v5 | |
with: | |
version: "0.6.0" | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version-file: ".python-version" | |
- name: Install dependencies | |
run: uv sync | |
- name: Configure environment | |
run: uv run ./cli.py init-workspace | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build and cache Docker images | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
target: development | |
load: true | |
tags: adit_dev:latest | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
- name: Start Docker containers | |
run: uv run ./cli.py compose-up --no-build | |
- name: Run linting | |
# https://github.com/actions/runner/issues/241#issuecomment-745902718 | |
shell: 'script -q -e -c "bash {0}"' | |
run: uv run ./cli.py lint | |
- name: Run tests | |
shell: 'script -q -e -c "bash {0}"' | |
run: uv run ./cli.py test --cov | |
- name: Stop Docker containers | |
if: ${{ always() }} | |
run: uv run ./cli.py compose-down |