Merge branch 'main' into docs/improve-documentation #151
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: CI | |
on: [ push ] | |
jobs: | |
ci-job: | |
name: Integration tests (Python-${{ matrix.python-version }}) | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
- "3.12" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python & Poetry Environment | |
uses: exasol/python-toolbox/.github/actions/[email protected] | |
with: | |
python-version: ${{ matrix.python-version }} | |
poetry-version: '1.8.2' | |
- name: Poetry build | |
run: poetry build | |
- name: Run tests for old API | |
run: poetry run pytest tests | |
- name: Run tests for new API and parser | |
run: poetry run pytest test | |
gate-1: | |
name: Gate 1 - Regular CI | |
needs: [ ci-job ] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Branch Protection | |
run: true |