Add checks of common configuration requirements to the UI #8
Workflow file for this run
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: | |
branches: [ main, master ] | |
paths-ignore: | |
- 'pretix_zugferd/locale/**' | |
pull_request: | |
branches: [ main, master ] | |
paths-ignore: | |
- 'pretix_zugferd/locale/**' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: Tests | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.11 | |
- uses: actions/cache@v1 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- name: Install system dependencies | |
run: sudo apt update && sudo apt install -y gettext ghostscript | |
- name: Install pretix | |
run: pip3 install "git+https://github.com/pretix/pretix@master#egg=pretix" | |
- name: Install Dependencies | |
run: pip3 install pytest pytest-django -Ue . | |
- name: Run checks | |
run: py.test tests |