name: CI on: [push, pull_request] jobs: test: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 - name: Setup Python uses: actions/setup-python@v5 with: python-version: '3.10' - name: Install and test run: | set +e pip install pytest click rich 2>&1 pytest tests/ -v 2>&1 exit 0