Skip to content

Updatest to client

Updatest to client #9

Workflow file for this run

name: Python tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pipenv
pipenv install --dev
- name: Lint with ruff
run: |
# stop the build if there are Python syntax errors or undefined names
pipenv run ruff .
# - name: Run tests
# run: |
# # stop the build if there are Python syntax errors or undefined names
# pipenv run pytest .