Skip to content

feat(ProgressiveBilling) - Add usage_thresholds & progressive_billing_credit_amount_cents #4

feat(ProgressiveBilling) - Add usage_thresholds & progressive_billing_credit_amount_cents

feat(ProgressiveBilling) - Add usage_thresholds & progressive_billing_credit_amount_cents #4

Workflow file for this run

name: Ruff
on: [push, pull_request]
jobs:
ruff:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install .[test]
- uses: chartboost/ruff-action@v1