-
Notifications
You must be signed in to change notification settings - Fork 1
44 lines (37 loc) · 950 Bytes
/
build.yml
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
36
37
38
39
40
41
42
43
44
name: Build & Test package
on:
push:
branches:
- "*"
tags:
- v*
pull_request:
branches:
- master
jobs:
build_and_test:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install PDM
uses: pdm-project/setup-pdm@v4
- name: Cache the Virtual Env
uses: actions/cache@v3
with:
path: ./.venv
key: venv-${{ matrix.python-version }}-${{ hashFiles('pdm.lock') }}
- name: Install the project dependencies
run: pdm install -d
- name: Build the project
run: pdm build
- name: Run the Unit tests
run: pdm run test -- -v