mirror of
https://github.com/JJTech0130/pypush.git
synced 2025-01-22 11:18:29 +00:00
38 lines
925 B
YAML
38 lines
925 B
YAML
name: Lints
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
paths:
|
|
- '.github/workflows/lint.yml'
|
|
- 'pypush/**'
|
|
- 'tests/**'
|
|
- 'pyproject.toml'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build:
|
|
if: '! github.event.pull_request.draft'
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
matrix:
|
|
python-version: [ 3.9, "3.10", "3.11", "3.12" ]
|
|
os: [ ubuntu-latest, macos-latest, windows-latest ]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
- uses: chartboost/ruff-action@v1
|
|
- name: Test install
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
python -m pip install -e '.[test,cli]' -U
|
|
- name: Tests
|
|
run: pytest |