forked from trustyai-explainability/NeMo-Guardrails
-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (29 loc) · 742 Bytes
/
Copy pathpr-tests.yml
File metadata and controls
32 lines (29 loc) · 742 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
name: PR Tests
on:
push:
pull_request:
# we don't ignore markdkowns to run pre-commits
paths-ignore:
- ".github/**"
jobs:
pr-tests-matrix:
strategy:
matrix:
os: [Ubuntu]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
include:
- os: Ubuntu
image: ubuntu-latest
fail-fast: false
uses: ./.github/workflows/_test.yml
with:
os: ${{ matrix.os }}
image: ${{ matrix.image }}
python-version: ${{ matrix.python-version }}
pr-tests-summary:
name: PR Tests Summary
needs: pr-tests-matrix
runs-on: ubuntu-latest
steps:
- name: Confirm all PR tests passed
run: echo "All PR Tests completed successfully"