Skip to content

Merge pull request #141 from proactiveops/dependabot/pip/setuptools-g… #384

Merge pull request #141 from proactiveops/dependabot/pip/setuptools-g…

Merge pull request #141 from proactiveops/dependabot/pip/setuptools-g… #384

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: dependencies
run: |
python -m pip install --upgrade pip
pip install -e '.[dev]'
- name: Format
run: |
ruff format --check
- name: Lint
run: |
ruff check --output-format=github
- name: pytest
run: |
python -m pytest --capture=no tests/