Removed rst #149
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: 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 |