Performance improvement: Combine multiple queries that are commonly performed together into one endpoint #954
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
pull_request: | |
branches: | |
- develop | |
- master | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
name: Set up Python | |
with: | |
python-version: '3.12' | |
- name: Install flake8 | |
run: python -m pip install flake8 | |
- name: Run linter | |
run: flake8 ./chord_metadata_service/mohpackets |