Document new wsgi location #175
This file contains hidden or 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
--- | |
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions | |
name: Tests | |
on: | |
push: | |
branches: ['main'] | |
pull_request: | |
branches: ['main'] | |
workflow_dispatch: | |
jobs: | |
tests: | |
name: Python ${{ matrix.python-version }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.10', '3.11', '3.12'] | |
steps: | |
# https://github.com/marketplace/actions/checkout | |
- uses: actions/checkout@v3 | |
- name: Start docker container | |
uses: docker://docker | |
with: | |
args: >- | |
run | |
--name bind9 | |
--volume ${{ github.workspace }}/dev-dns-server/etc/named.conf:/etc/bind/named.conf | |
--volume ${{ github.workspace }}/dev-dns-server/cache/dyndns1.dev.db:/var/cache/bind/dyndns1.dev.db | |
--volume ${{ github.workspace }}/dev-dns-server/cache/dyndns2.dev.db:/var/cache/bind/dyndns2.dev.db | |
--publish 55553:53/tcp | |
--publish 55553:53/udp | |
--detach | |
ubuntu/bind9 | |
- run: sleep 5 | |
# https://github.com/marketplace/actions/setup-python | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip setuptools wheel virtualenv tox tox-gh-actions | |
# https://github.com/ymyzk/tox-gh-actions | |
- name: Run tox targets for ${{ matrix.python-version }} | |
run: python -m tox |