Skip to content

HGI-11006: repo cleanup with README, tox, ruff, GHA, and Jenkins #2

HGI-11006: repo cleanup with README, tox, ruff, GHA, and Jenkins

HGI-11006: repo cleanup with README, tox, ruff, GHA, and Jenkins #2

Workflow file for this run

name: CI
on:
pull_request:
paths:
- '**.py'
- 'ruff.toml'
- 'tox.ini'
- 'pyproject.toml'
- '.github/workflows/lint.yml'
jobs:
ci:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install Poetry
run: pip install poetry
- name: Install tox
run: pip install tox
- name: Lint
run: tox -e ruff
- name: Test
run: tox -e pytest