Merge pull request #5 from NewTec-GmbH/release/v1.0.x #21
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 | |
# Controls when the action will run. | |
on: | |
push: | |
branches: ["**"] | |
pull_request: | |
branches: [main] | |
release: | |
# A release, pre-release, or draft of a release is published. | |
types: [published] | |
# Allows you to run this workflow manually from the Actions tab. | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel. | |
jobs: | |
# The introduction just shows some useful informations. | |
intro: | |
# The type of runner that the job will run on. | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job. | |
steps: | |
- run: echo "The job was automatically triggered by a ${{ github.event_name }} event." | |
- run: echo "The name of the branch is ${{ github.ref }} and the repository is ${{ github.repository }}." | |
lint: | |
# The type of runner that the job will run on. | |
runs-on: ubuntu-latest | |
needs: intro | |
strategy: | |
matrix: | |
python-version: ["3.9", "3.10", "3.11"] | |
# Steps represent a sequence of tasks that will be executed as part of the job. | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pylint pytest pytest-cov toml | |
pip install . | |
- name: Analysing the code with pylint | |
run: | | |
pylint ./src/pySupersetCli | |
test: | |
# The type of runner that the job will run on. | |
runs-on: ubuntu-latest | |
needs: intro | |
strategy: | |
matrix: | |
python-version: ["3.9", "3.10", "3.11"] | |
# Steps represent a sequence of tasks that will be executed as part of the job. | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pytest | |
pip install . | |
- name: Test with pytest | |
run: | | |
pytest --verbose tests | |
coverage: | |
# The type of runner that the job will run on. | |
runs-on: ubuntu-latest | |
needs: intro | |
strategy: | |
matrix: | |
python-version: ["3.9", "3.10", "3.11"] | |
# Steps represent a sequence of tasks that will be executed as part of the job. | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pylint pytest pytest-cov toml | |
pip install . | |
- name: Create coverage report | |
run: | | |
pytest tests -v --cov=./src/pySupersetCli --cov-report=html:coverage_report | |
- name: Upload coverage report | |
uses: actions/upload-artifact@v4 | |
with: | |
name: coverage-report-${{ matrix.python-version }} | |
path: coverage_report/ |