gaurv007's picture
Upload .github/workflows/ci.yml
c238af9 verified
raw
history blame
402 Bytes
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
pip install -e ".[test]"
- name: Run tests
run: pytest tests/ -v --tb=short