Skip to content

add sort and paging size. #76

add sort and paging size.

add sort and paging size. #76

Workflow file for this run

name: Python Test
on:
push:
branches:
- main # Change this to your branch name if needed
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install locales
run: sudo apt-get install -y locales && sudo locale-gen da_DK.UTF-8
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Install dependencies
run: python -m pip install -r requirements.txt
- name: Run tests
run: python -m unittest tests/*.py
- name: Run mypy
run: mypy --config-file pyproject.toml .