Skip to content

Merge pull request #1 from reworkd/download #19

Merge pull request #1 from reworkd/download

Merge pull request #1 from reworkd/download #19

Workflow file for this run

name: Test and Lint
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
PYTHON_VERSION: "3.11"
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: 'poetry'
- run: poetry install
- name: Run ruff
run: poetry run ruff format --check
- name: Run ruff lint
run: poetry run ruff check
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: 'poetry'
- run: poetry install
- name: Run pytest
run: poetry run pytest . -v