From f7dc157bd1c4e4942277ee8dca7720dc2b7f0ba9 Mon Sep 17 00:00:00 2001 From: Koji Ishii Date: Sat, 28 Mar 2026 14:45:56 +0900 Subject: [PATCH] ci: Run without `tox` `tox` fails for some reasons; e.g.: https://github.com/googlefonts/chws_tool/actions/runs/23678541481/job/68986369198?pr=305 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ac1e5bc..0480cd5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: - name: Install Dependencies run: uv sync - name: Run style and typing checks - run: uv run tox -e lint + run: uv run black --check --diff src tests test: runs-on: ${{ matrix.platform }} strategy: @@ -35,7 +35,7 @@ jobs: - name: Install Dependencies run: uv sync - name: Run the tests - run: uv run tox -e py + run: uv run pytest deploy: # only run if the commit is tagged... if: startsWith(github.ref, 'refs/tags/v')