name: CI on: push: branches: [main] jobs: test: runs-on: ubuntu-latest steps: - run: python3 --version - run: pip install -e . - run: pytest tests/ -v --tb=short