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