diff --git a/.github/workflows/build_docs.yml b/.github/workflows/build_docs.yml index 46119ba..56470d4 100644 --- a/.github/workflows/build_docs.yml +++ b/.github/workflows/build_docs.yml @@ -9,19 +9,21 @@ jobs: deploy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 - - uses: actions/setup-python@v5 - with: - python-version: 3.x + - name: Install uv + uses: astral-sh/setup-uv@v7 - - run: pip install ".[dev]" + - name: Set up Python + run: | + uv python install + uv sync --locked - name: Configure Git user run: | git config --local user.email "github-actions[bot]@users.noreply.github.com" git config --local user.name "github-actions[bot]" - - run: mike deploy --push dev + - run: uv run mike deploy --push dev diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 6ca7c41..6f07cb5 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -6,31 +6,21 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Install Manta from source - run: | - # Omitting the following command causes the version of setuptools - # used by python to get confused, and it doesn't detect the name - # or version of the package from pyproject.toml - so the following - # workaround is used: - # https://github.com/pypa/setuptools/issues/3269#issuecomment-1254507377 - export DEB_PYTHON_INSTALL_LAYOUT=deb_system + - name: Install uv + uses: astral-sh/setup-uv@v7 - python3 -m venv venv/ - source venv/bin/activate - python3 -m pip install -U pip - python3 -m pip install -e ".[dev]" - python3 -m pip install git+https://github.com/amaranth-lang/amaranth-boards.git + - name: Set up Python + run: | + uv python install + uv sync --locked - name: Run pre-commit against all files - run: | - source venv/bin/activate - pre-commit run --all-files + run: uv run pre-commit run --all-files - name: Run tests run: | source ./environment.sh - source venv/bin/activate - make test + uv run make test - name: Upload coverage reports uses: actions/upload-artifact@v4 @@ -42,11 +32,7 @@ jobs: coverage.xml - name: Show coverage report - run: | - source venv/bin/activate - coverage report + run: uv run coverage report - name: Upload results to Codecov - run: | - source venv/bin/activate - python3 -m codecov -t ${{ secrets.CODECOV_TOKEN }} + run: uv run codecov -t ${{ secrets.CODECOV_TOKEN }}