Make regex in generate-rss.py case-insensitive #47
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: Tests | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
lint-python: | |
name: Lint Python code | |
runs-on: ubuntu-latest | |
steps: | |
- id: checkout | |
name: Checkout | |
uses: actions/checkout@v3 | |
- id: setup-python | |
name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
cache: 'pip' | |
- id: install-python-dependencies | |
name: Install Python dependencies | |
run: pip install -r requirements.txt | |
- id: lint | |
name: Lint Python code | |
run: make lint | |
mypy-python: | |
name: Static-types check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- id: setup-python | |
name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
cache: 'pip' | |
- id: install-python-dependencies | |
name: Install Python dependencies | |
run: pip install -r requirements.txt | |
- id: mypy | |
name: Run mypy | |
run: make mypy | |
test-python: | |
name: Test Python code | |
runs-on: ubuntu-latest | |
steps: | |
- id: checkout | |
name: Checkout | |
uses: actions/checkout@v3 | |
- id: setup-python | |
name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
cache: 'pip' | |
- id: install-python-dependencies | |
name: Install Python dependencies | |
run: pip install -r requirements.txt | |
- id: test | |
name: Run tests | |
run: make tests |