Skip to content

new structure

new structure #123

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.11" ]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade Pip
run: |
pip3 install --no-cache-dir --upgrade pip
pip3 install --no-cache-dir setuptools wheel
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Install Dependencies
run: |
poetry install --only dev --no-root --no-interaction --no-ansi
- name: Run Ruff
run: |
poetry run ruff .