Rewrite Makefile: do not include mod-wsgi-standalone package in defau… #20
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: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["pypy3.9", "pypy3.10", "3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: make install | |
- name: Run Entrecote tests | |
run: .venv/bin/python3 entrecote.py | |
- name: Run development server | |
uses: JarvusInnovations/background-action@v1 | |
with: | |
run: make server & | |
wait-on: http://127.0.0.1:8000 | |
log-output-if: failure | |
- name: Run Roxy and Ferris tests | |
run: sh ./test.sh |