Skip to content

Remove network from compose files #34

Remove network from compose files

Remove network from compose files #34

Workflow file for this run

name: Code Quality Checks
on:
push:
branches: [ '**' ]
pull_request:
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pre-commit
- name: Run pre-commit hooks (excluding mypy)
env:
SKIP: mypy
run: |
pre-commit run --all-files