Skip to content

Add Dependabot auto-merge workflow #4

Add Dependabot auto-merge workflow

Add Dependabot auto-merge workflow #4

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install package and test dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e . pytest
- name: Run tests
run: python -m pytest tests -q