From 8105409032a0f0a5784c85a25995f2ca5f16e823 Mon Sep 17 00:00:00 2001 From: "George Y. Kussumoto" Date: Tue, 17 Dec 2024 16:20:40 -0300 Subject: [PATCH] ci: setup attempt #11 --- .github/workflows/ci.yaml | 28 +--------------------------- 1 file changed, 1 insertion(+), 27 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 58e958a..63026ad 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -40,33 +40,7 @@ jobs: run: uv tool install --python-preference only-managed --python 3.12 tox --with tox-uv - name: Setup tests - run: tox run -vv --notest --skip-missing-interpreters false + run: tox run -vv --notest --skip-missing-interpreters false -e ${{ matrix.env }} - name: Run tests run: tox run --skip-pkg-install -e ${{ matrix.env }} - - - #install-dev: - # name: Verify dev env - # runs-on: ubuntu-latest - # steps: - # - uses: actions/checkout@v4 - - # - name: Install uv - # uses: astral-sh/setup-uv@v3 - - # - name: Install Python - # if: matrix.env != '3.13' - # run: uv python install --python-preference only-managed ${{ matrix.env }} - - # - name: Install in dev mode - # run: | - # uv venv - # uv pip install -e .[dev] - - # - name: Try to import on Linux - # if: runner.os == 'Linux' - # run: | - # source .venv/bin/activate - - # python -Ic 'import belogging; print(belogging.__version__)'