Skip to content

Clarify Reddit API is free for personal use only #3

Clarify Reddit API is free for personal use only

Clarify Reddit API is free for personal use only #3

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install pytest ruff
- name: Lint
run: ruff check .
- name: Test
run: pytest tests/ -v