Skip to content

Update README.md

Update README.md #87

Workflow file for this run

name: Lint and Format
on: [push, pull_request]
jobs:
lint-and-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: |
pip install flake8 black
- name: Run Black (Check Only)
run: |
black --check perplexity_correlations/
- name: Run Flake8
run: |
flake8 perplexity_correlations/