From fb446a9157e879974b8bc4ec514b83ecbbc3f306 Mon Sep 17 00:00:00 2001 From: Matt Troutman Date: Wed, 22 Apr 2026 21:10:43 -0500 Subject: [PATCH] ci: drop brew-audit job, install uv via curl to avoid gitea/setup-uv API quirk --- .github/workflows/tests.yml | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c110663..4137310 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,21 +13,9 @@ jobs: - uses: actions/checkout@v4 - name: Install uv - uses: astral-sh/setup-uv@v4 - with: - version: "latest" + run: | + curl -LsSf https://astral.sh/uv/install.sh | sh + echo "$HOME/.local/bin" >> "$GITHUB_PATH" - name: Run tests run: uv run pytest tests/ -v --tb=short - - brew-audit: - runs-on: macos-latest - steps: - - uses: actions/checkout@v4 - - - name: Audit formulae - run: | - for f in Formula/font-*.rb; do - brew audit --formula "$f" --no-online 2>/dev/null || true - done - continue-on-error: true