Skip to content

Update description in pyproject #2

Update description in pyproject

Update description in pyproject #2

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
max-parallel: 10
matrix:
python: ["3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Setup dev env
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade setuptools wheel
python -m pip install .[dev]
- name: Run ruff format
run: ruff format .
- name: Run ruff
run: ruff check .
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Setup dev env
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade setuptools wheel
python -m pip install .[test]
- name: Run test
run: pytest