Skip to content

ruff --fix

ruff --fix #6

Workflow file for this run

# NOTE: This file is auto generated by OpenAPI Generator.
# URL: https://openapi-generator.tech
#
# ref: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: abdm Python package
on: [push, pull_request]
jobs:
check:
runs-on: ubuntu-latest # host's operating system
steps: # each job consists of 1+ steps
- name: Checkout commit # download the code from triggering commit
uses: actions/checkout@v4
- name: Set up Python and Poetry
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
- name: Install dependencies
run: |
cd .
poetry install --no-interaction --no-root
- name: Format with Ruff
run: |
cd .
poetry run ruff format --check .
- name: Lint with Ruff
run: |
cd .
poetry run ruff check -- .
- name: Type check
run: |
cd .
poetry run python -m mypy .
test:
runs-on: ubuntu-latest
needs: check
steps: # each job consists of 1+ steps
- name: Checkout commit # download the code from triggering commit
uses: actions/checkout@v4
- name: Set up Python and Poetry
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
- name: Install dependencies
run: |
cd .
poetry install --no-interaction --no-root
- name: Test with pytest
run: |
cd .
poetry run pytest -vvv