-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (34 loc) · 812 Bytes
/
Copy pathci.yml
File metadata and controls
38 lines (34 loc) · 812 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
36
37
38
name: CI
on:
pull_request:
paths:
- .github/workflows/ci.yml
- uv.lock
- pyproject.toml
- src/**
- tests/**
push:
branches: [main]
paths:
- .github/workflows/ci.yml
- uv.lock
- pyproject.toml
- src/**
- tests/**
jobs:
build:
runs-on: ubuntu-24.04
permissions:
contents: read
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- name: Checkout
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
persist-credentials: false
- uses: CVector-Energy/python-test@b956bb181831f0ddca3496505d5823c678a926e7 # v1.1.0
with:
python-version: ${{ matrix.python-version }}
src-dirs: .