Skip to content

feat(generators): introduce PersonaSimulator for user simulation #134

feat(generators): introduce PersonaSimulator for user simulation

feat(generators): introduce PersonaSimulator for user simulation #134

Workflow file for this run

name: Main CI
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: astral-sh/setup-uv@eac588ad8def6316056a12d4907a9d4d84ff7a3b # v7
with:
enable-cache: true
python-version: "3.12"
- run: make install install-tools
- run: make check
test-unit:
needs: lint
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
python-version: ["3.12", "3.13"]
package: [giskard-core, giskard-agents, giskard-checks]
name: test-unit / ${{ matrix.package }} / ${{ matrix.python-version }}
env:
PACKAGE: ${{ matrix.package }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: astral-sh/setup-uv@eac588ad8def6316056a12d4907a9d4d84ff7a3b # v7
with:
enable-cache: true
python-version: ${{ matrix.python-version }}
- run: make install
- run: make test-unit PACKAGE=$PACKAGE