check-patroni/.github/workflows/tests.yml

23 lines
447 B
YAML
Raw Permalink Normal View History

2022-07-12 14:31:23 +02:00
name: Tests
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- python: "3.7"
- python: "3.11"
2022-07-12 14:31:23 +02:00
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install tox
run: pip install tox
- name: Test
run: tox -e py