Skip to content

[130] Add and initial version of a Makefile version and tiny test CI pipeline #4

[130] Add and initial version of a Makefile version and tiny test CI pipeline

[130] Add and initial version of a Makefile version and tiny test CI pipeline #4

Workflow file for this run

name: Test CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Make
run: sudo apt-get install make
- name: Install dependencies and Build package
run: |
make install-ci
- name: Running the tests
run: |
make test-xmlcov