Skip to content

feat(sdk): wire semantic scanner into the SDK with on/off flag #86

feat(sdk): wire semantic scanner into the SDK with on/off flag

feat(sdk): wire semantic scanner into the SDK with on/off flag #86

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
go:
name: Go tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.22"
cache-dependency-path: sidecar/go.sum
- name: go test
working-directory: sidecar
run: go test ./...
- name: go vet
working-directory: sidecar
run: go vet ./...
python:
name: Python tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install SDK
working-directory: sdk/python
run: pip install -e ".[dev]"
- name: pytest
working-directory: sdk/python
run: python -m pytest -v