Skip to content

Improve formatting #125

Improve formatting

Improve formatting #125

Workflow file for this run

name: Continuous Integration
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
linting:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install dependencies
run: |
pip install flake8
- name: Run flake8
run: |
flake8 .