Merge pull request #323 from periodo/dependabot/pip/werkzeug-3.0.0 #314
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: server tests | |
on: [push] | |
jobs: | |
run-tests: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python-version: [ '3.10', '3.11' ] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- run: >- | |
TESTING=1 | |
SKIP_TRANSLATION=true | |
make test |