Bump JamesIves/github-pages-deploy-action from 4.5.0 to 4.6.9 #795
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: Check Links | |
on: | |
push: | |
pull_request: | |
jobs: | |
run_tests: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python: [3.9] | |
name: Check Links (Python-${{ matrix.python }}) | |
steps: | |
- name: Fetch sqlalchemy_exasol code from repository | |
uses: actions/checkout@v4 | |
- name: Setup Python & Poetry Environment | |
uses: ./.github/actions/python-environment | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Check documentation links ${{ matrix.python }} using ${{ matrix.connector }} | |
run: poetry run nox -s check-links |