name: Lint & Test on: workflow_call: jobs: lint: strategy: fail-fast: false matrix: python_version: ["3.11", "3.12"] name: Run Linting & Test Suites runs-on: ubuntu-latest steps: - name: Install Python Dependencies uses: HassanAbouelela/actions/setup-python@setup-python_v1.4.2 with: python_version: ${{ matrix.python_version }} install_args: "--extras async-rediscache --only main --only lint --only test" - name: Run pre-commit hooks run: SKIP=ruff pre-commit run --all-files # Run `ruff` using github formatting to enable automatic inline annotations. - name: Run ruff run: "ruff check --output-format=github ." - name: Run tests and generate coverage report run: python -m pytest -n auto --cov pydis_core -q - name: Build and dry run the example bot to ensure deps can be installed & imported run: docker run --rm --env GUILD_ID=1234 --env IN_CI=true $(docker build --build-arg python_version=${{ matrix.python_version }} -q -f ./dev/Dockerfile .) run python -m dev.bot # Prepare the Pull Request Payload artifact. If this fails, we # we fail silently using the `continue-on-error` option. It's # nice if this succeeds, but if it fails for any reason, it # does not mean that our lint checks failed. - name: Prepare Pull Request Payload artifact id: prepare-artifact if: always() && github.event_name == 'pull_request' continue-on-error: true run: cat $GITHUB_EVENT_PATH | jq '.pull_request' > pull_request_payload${{ matrix.python_version }}.json # This only makes sense if the previous step succeeded. To # get the original outcome of the previous step before the # `continue-on-error` conclusion is applied, we use the # `.outcome` value. This step also fails silently. - name: Upload a Build Artifact if: always() && steps.prepare-artifact.outcome == 'success' continue-on-error: true uses: actions/upload-artifact@v4 with: name: pull-request-payload-${{ matrix.python_version }} path: pull_request_payload${{ matrix.python_version }}.json