Pagination (#103) #202
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: Run Tests | |
on: | |
push: | |
tags-ignore: | |
- "**" | |
branches: | |
- "**" | |
jobs: | |
run-tests: | |
name: Run tests | |
runs-on: ${{ matrix.os }} | |
strategy: | |
# Setting fail-fast to false, will let all concurrent jobs run if one of them fails, instead of cancelling all | |
# of them as soon as one fails. | |
fail-fast: false | |
matrix: | |
python-version: | |
- "3.8" | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
- "3.12" | |
include: | |
- os: "ubuntu-latest" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Run Tests | |
run: | | |
pytest |