ci: drop brew-audit job, install uv via curl to avoid gitea/setup-uv API quirk

This commit is contained in:
Matt Troutman 2026-04-22 21:10:43 -05:00
parent 183268f66e
commit fb446a9157
No known key found for this signature in database

View file

@ -13,21 +13,9 @@ jobs:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Install uv - name: Install uv
uses: astral-sh/setup-uv@v4 run: |
with: curl -LsSf https://astral.sh/uv/install.sh | sh
version: "latest" echo "$HOME/.local/bin" >> "$GITHUB_PATH"
- name: Run tests - name: Run tests
run: uv run pytest tests/ -v --tb=short 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