Refactor GitHub workflows and prepare release 0.12.0 (#154) #18
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/CD | |
on: | |
push: | |
tags: | |
- '**' | |
jobs: | |
check-tag-version-job: | |
name: Check Release Tag | |
uses: ./.github/workflows/check-release-tag.yml | |
ci-job: | |
name: Checks | |
needs: [ check-tag-version-job ] | |
uses: ./.github/workflows/checks.yml | |
tests-job: | |
name: Tests (Python-${{ matrix.python-version }}) | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.8", "3.9", "3.10"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- uses: abatilo/actions-poetry@v3.0.0 | |
with: | |
poetry-version: 1.2.2 | |
- name: Install Project | |
run: poetry install | |
- name: Checkout ITDE | |
run: git clone https://github.com/exasol/integration-test-docker-environment.git | |
working-directory: .. | |
- name: Start EXASOL Test-Environment | |
run: ./start-test-env spawn-test-environment --environment-name test --database-port-forward 8888 --bucketfs-port-forward 6666 --db-mem-size 4GB | |
working-directory: ../integration-test-docker-environment | |
- name: Run Tests | |
run: poetry run pytest tests | |
cd-job: | |
name: Continuous Delivery | |
needs: [ ci-job ] | |
uses: ./.github/workflows/build-and-publish.yml | |
secrets: | |
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} | |
metrics: | |
needs: [ ci-job ] | |
uses: ./.github/workflows/report.yml |