Code separation #12
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: Build package in standalone version | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: | |
- '3.8' | |
- '3.9' | |
- '3.10' | |
- '3.11' | |
- '3.12' | |
steps: | |
- name: Set up Python | |
uses: actions/setup-python@main | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Checkout repository | |
uses: actions/checkout@main | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Install dependencies | |
run: python -m pip install poetry | |
- name: Install project | |
working-directory: ${{ github.workspace }} | |
run: poetry install | |
- name: Use CLI standalone | |
run: poetry run ${{ vars.MODULE_NAME }} -h | |
- name: Use CLI as Python module | |
run: poetry run python -m ${{ vars.MODULE_NAME }} -h | |
- name: Run unitary & integration tests | |
env: | |
SCRIPT_PATH: ./scripts/run-tests.sh | |
run: | | |
chmod +x $SCRIPT_PATH | |
poetry run $SCRIPT_PATH | |
#- name: Check source code with Ruff | |
# run: poetry run python -m ruff check --config ./conf/ruff-src.toml | |
# | |
#- name: Check tests code with Ruff | |
# run: poetry run python -m ruff check --config ./conf/ruff-tests.toml |