Update mkdocs-material requirement from ~=9.5.17 to >=9.5.17,<9.7.0 #66
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 | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
workflow_call: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get source code | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.9" | |
cache: "pip" | |
- name: Install pgserviceparser with test dependencies | |
run: pip install -e . | |
- name: Run Python tests | |
env: | |
PGSERVICEPARSER_SRC_DIR: ${{ github.workspace }} | |
run: | | |
python -m unittest test.test_lib |