name: Validate on: [push] jobs: validate: runs-on: ubuntu-latest strategy: matrix: python-version: ["3.11"] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v3 with: python-version: ${{ matrix.python-version }} - name: Install validation dependencies run: | python -m pip install --upgrade pip pip install python-dateutil selenium - name: Compile core scripts run: | python -m py_compile Google2xls.py WP2xls.py social.py text.py review_workflow_utils.py - name: Run focused unit tests run: | python -m unittest discover -s tests