Skip to content

Bump ruff from 0.6.7 to 0.6.8 #169

Bump ruff from 0.6.7 to 0.6.8

Bump ruff from 0.6.7 to 0.6.8 #169

Workflow file for this run

name: Tests (pip-tools)
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
test-pip-tools:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
python-version: ['3.12']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install -r dev-requirements.txt
- name: Run unit tests
run: pytest
- name: Create project from template
# Choose default options
run: cookiecutter . --no-input packaging=pip-tools
- name: Install project dependencies
working-directory: my_project
run: pip install .[dev]
- name: Run tests
working-directory: my_project
run: pytest
- name: Run pre-commit hooks for project
working-directory: my_project
run: |
git init
git add .
pre-commit run -a