build: added dependabot-uv workflow (#323) #654
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
# manual | |
workflow_dispatch: | |
env: | |
PRE_COMMIT_CACHE: ~/.cache/pre-commit | |
UV_VERSION: 0.4.25 | |
jobs: | |
tox-precommit: | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: | |
- "3.11" | |
os: [ubuntu-latest] | |
env: | |
- TOXENV: "pre-commit" | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Configure Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install uv | |
uses: astral-sh/setup-uv@v3 | |
with: | |
version: ${{ env.UV_VERSION }} | |
enable-cache: true | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install tox==4.18.1 tox-gh | |
- name: Cache pre-commit | |
uses: actions/cache@v4 | |
with: | |
path: ${{ env.PRE_COMMIT_CACHE }} | |
key: ${{ matrix.os }}-${{ matrix.python-version }}-pre-commit-${{ hashFiles('.pre-commit-config.yaml') }} | |
- name: Run tox | |
run: | | |
tox | |
shell: bash | |
env: ${{ matrix.env }} | |
tox-tests: | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: | |
- "3.10" | |
- "3.11" | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Configure Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install uv | |
uses: astral-sh/setup-uv@v3 | |
with: | |
version: ${{ env.UV_VERSION }} | |
enable-cache: true | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install tox==4.18.1 tox-gh | |
- name: Cache tox env | |
uses: actions/cache@v4 | |
with: | |
path: .tox | |
key: ${{ matrix.os }}-${{ matrix.python-version }}-tox-${{ hashFiles('pyproject.toml', 'uv.lock') }} | |
- name: Set tox env (for tox + codecov) | |
run: | | |
MATRIX_PYTHON_VERSION=${{matrix.python-version}} | |
echo "TOXENV=py${MATRIX_PYTHON_VERSION/./}" >> $GITHUB_ENV | |
- name: Run tox | |
run: | | |
tox -p | |
env: | |
TOXENV: ${{ env.TOXENV }} | |
- name: Upload to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
file: ./.tox/.coverage.${{ env.TOXENV }}.xml | |
verbose: true | |
fail_ci_if_error: true | |
flags: "${{ env.TOXENV }}" |