Skip to content

Removed rst

Removed rst #149

Workflow file for this run

name: Python Tests
on:
push:
branches: [ main ]
jobs:
# Check the status of this job before merge.
build:
runs-on: ubuntu-20.04
steps:
- name: Checkout the captain_black repo.
uses: actions/checkout@v4
with:
clean: true
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Start Redis
uses: supercharge/[email protected]
- name: Install dependencies
run: |
make requirements
- name: Lint
run: |
make lint
- name: Test
run: |
make test