Skip to content

[MAINTENANCE] Add ci/cd #1

[MAINTENANCE] Add ci/cd

[MAINTENANCE] Add ci/cd #1

Workflow file for this run

name: tests-suite
on:
pull_request:
branches:
- main
jobs:
tests-suite-by-version:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
make init-dev
- name: Run tests
run: |
make test-report-xml
- name: Test Report
uses: mikepenz/action-junit-report@v4
if: success() || failure() # always run even if the previous step fails
with:
report_paths: 'test-report.xml'