#119: Refactored pkg_resources usage to importlib.resources #983
Workflow file for this run
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: Test Python Versions with all tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test-python-version-all-tests: | |
strategy: | |
fail-fast: false | |
matrix: | |
exasol_version: | |
- "default" | |
python_version: | |
- "3.9" | |
- "3.10" | |
name: Run tests with Python ${{ matrix.python_version }} and Exasol ${{ matrix.exasol_version }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/prepare_poetry_env | |
with: | |
python_version: "${{ matrix.python_version }}" | |
- name: Run all tests | |
run: poetry run nox -s "run-tests(db_version='${{ matrix.exasol_version }}')" |