feat: add pii masking capability to private ai integration #65
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Full Tests | |
on: | |
pull_request: | |
types: [review_requested, ready_for_review] | |
paths-ignore: | |
- "**/*.md" | |
- ".github/**" | |
push: | |
tags: | |
- "v*" | |
workflow_dispatch: | |
jobs: | |
call-tests: | |
strategy: | |
matrix: | |
os: [Windows, macOS] # exclude Ubuntu as it is available in pr-tests | |
python-version: ["3.9", "3.10", "3.11"] | |
include: | |
- os: Ubuntu | |
image: ubuntu-latest | |
- os: Windows | |
image: windows-2022 | |
- os: macOS | |
image: macos-14 | |
fail-fast: false | |
uses: ./.github/workflows/_test.yml | |
with: | |
os: ${{ matrix.os }} | |
image: ${{ matrix.image }} | |
python-version: ${{ matrix.python-version }} |