Skip to content

feat: Lint with black (#2) #11

feat: Lint with black (#2)

feat: Lint with black (#2) #11

Workflow file for this run

name: Test Python SDK
on:
pull_request:
push:
branches:
- main
jobs:
test-policies:
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.9"
cache: "pip"
cache-dependency-path: "./requirements.txt"
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run tests
run: make test