Skip to content

Update port 5000

Update port 5000 #13

Workflow file for this run

name: CI
on:
pull_request:
branches:
- '**'
push:
branches:
- '**'
jobs:
lint_job:
name: Lint
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 setuptools -U
python -m pip install pre-commit
- name: Run pre-commit
run: |
pre-commit run --all-files || (git --no-pager diff && exit 1)