Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
76 changes: 76 additions & 0 deletions .github/workflows/develop.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
---

# cspell:words venv

name: Development pipeline

on:
pull_request:
branches:
- develop

jobs:

check_for_linux:
name: "Run checks and tests on Linux using Python ${{ matrix.python-version }}"
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]

steps:

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Checkout sources
uses: actions/checkout@v4

- name: Set up automation
run: python Automation/Setup/setup.py --verbosity debug

- name: Check automation
run: python Automation/Setup/check.py --verbosity debug

- name: Set up sources
run: .venv-automation/bin/automation --verbosity debug develop

- name: Run linter
run: .venv-automation/bin/automation --verbosity debug lint

- name: Run tests
run: .venv-automation/bin/automation --verbosity debug test

check_for_windows:
name: "Run checks and tests on Windows using Python ${{ matrix.python-version }}"
runs-on: windows-latest
strategy:
matrix:
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]

steps:

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Checkout sources
uses: actions/checkout@v4

- name: Set up automation
run: python Automation/Setup/setup.py --verbosity debug

- name: Check automation
run: python Automation/Setup/check.py --verbosity debug

- name: Set up sources
run: .venv-automation/Scripts/automation.exe --verbosity debug develop

- name: Run linter
run: .venv-automation/Scripts/automation.exe --verbosity debug lint

- name: Run tests
run: .venv-automation/Scripts/automation.exe --verbosity debug test
76 changes: 76 additions & 0 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
---

# cspell:words venv

name: Integration pipeline

on:
push:
branches:
- develop

jobs:

check_for_linux:
name: "Run checks and tests on Linux using Python ${{ matrix.python-version }}"
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]

steps:

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Checkout sources
uses: actions/checkout@v4

- name: Set up automation
run: python Automation/Setup/setup.py --verbosity debug

- name: Check automation
run: python Automation/Setup/check.py --verbosity debug

- name: Set up sources
run: .venv-automation/bin/automation --verbosity debug develop

- name: Run linter
run: .venv-automation/bin/automation --verbosity debug lint

- name: Run tests
run: .venv-automation/bin/automation --verbosity debug test

check_for_windows:
name: "Run checks and tests on Windows using Python ${{ matrix.python-version }}"
runs-on: windows-latest
strategy:
matrix:
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]

steps:

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Checkout sources
uses: actions/checkout@v4

- name: Set up automation
run: python Automation/Setup/setup.py --verbosity debug

- name: Check automation
run: python Automation/Setup/check.py --verbosity debug

- name: Set up sources
run: .venv-automation/Scripts/automation.exe --verbosity debug develop

- name: Run linter
run: .venv-automation/Scripts/automation.exe --verbosity debug lint

- name: Run tests
run: .venv-automation/Scripts/automation.exe --verbosity debug test
Loading