Skip to content

chore(deps): bump pydantic from 2.6.0 to 2.6.1 #18

chore(deps): bump pydantic from 2.6.0 to 2.6.1

chore(deps): bump pydantic from 2.6.0 to 2.6.1 #18

Workflow file for this run

name: 'Run tests'
on:
pull_request:
branches:
- main
jobs:
run_tests:
name: Run Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Create venv
run: |
python3 -m venv venv
. ./venv/bin/activate
pip install -r requirements.txt
pip install black==23.7.0 pylint==2.17.5
- name: Run tests
run: |
set -e
. ./venv/bin/activate
black --check .
pylint *.py deps