Skip to content

Support uv as package manager #200

Support uv as package manager

Support uv as package manager #200

Workflow file for this run

name: CI
on:
pull_request: {}
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: open-turo/actions-gha/lint@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
semantic-release-extra-plugins: |
@open-turo/semantic-release-config
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: open-turo/actions-gha/test@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
# lint-oss tries to run this action against open source repositories not in
# open-turo to make sure this is usable outside the org.
# Repositories added to this list should have pre-commit hooks that don't
# require external tooling to be installed.
# Repositories added to this list must have passing pre-commit hooks.
lint-oss:
name: Lint / Open source
runs-on: ubuntu-latest
strategy:
matrix:
repos:
- tiangolo/fastapi
steps:
- uses: actions/checkout@v4
with:
repository: ${{ matrix.repos }}
- uses: actions/checkout@v4
with:
path: actions-python
- uses: ./actions-python/lint
with:
checkout-repo: false
github-token: ${{ secrets.GITHUB_TOKEN }}
test-oss:
name: Test / Open source
runs-on: ubuntu-latest
strategy:
matrix:
repos:
- pallets/flask
steps:
- uses: actions/checkout@v4
with:
repository: ${{ matrix.repos }}
- uses: actions/checkout@v4
with:
path: actions-python
- uses: ./actions-python/test
with:
checkout-repo: false
github-token: ${{ secrets.GITHUB_TOKEN }}