-
Notifications
You must be signed in to change notification settings - Fork 4
35 lines (30 loc) · 892 Bytes
/
ci-develop.yml
File metadata and controls
35 lines (30 loc) · 892 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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