Skip to content

Merge branch 'main' of github.com:TristanThrush/perplexity-correlatio… #106

Merge branch 'main' of github.com:TristanThrush/perplexity-correlatio…

Merge branch 'main' of github.com:TristanThrush/perplexity-correlatio… #106

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/