Skip to content

updated version number and copyright date #50

updated version number and copyright date

updated version number and copyright date #50

Workflow file for this run

name: CI Testing
# This pipeline builds and tests the project.
# Commits that pass this workflow can be assumed to be functionally correct,
# per the current state of the mock responses registry.
on:
pull_request:
types: [opened, edited, synchronize, reopened]
push:
branches:
- develop
jobs:
build-and-test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
os: [ubuntu-latest, windows-latest]
name: Build ${{ matrix.os }}-py${{ matrix.python-version }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Build the project
uses: ./.github/actions/build-project
with:
python-version: ${{ matrix.python-version }}
- name: Run unit tests
shell: bash
run: |
make check