Skip to content

Support target treatment indicator other than 1 (#78) #181

Support target treatment indicator other than 1 (#78)

Support target treatment indicator other than 1 (#78) #181

Workflow file for this run

name: Test package
on:
push:
branches:
- main
pull_request:
jobs:
lint-and-test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ['3.10', '3.11', '3.12']
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
version: "latest"
- name: Install dependencies
run: |
uv sync --dev
- name: Lint with ruff
run: |
uv run ruff check .
- name: Run unit tests
run: |
uv run python -m unittest