as a workaround for now we're just gonna rm the reports tarball #31
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test and Report | |
on: | |
push: | |
branches: [ "develop" ] | |
pull_request: | |
branches: [ "develop" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies on ${{ matrix.python-version }} | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install pdm | |
pdm sync --dev | |
- name: Test reports on ${{ matrix.python-version }} | |
run: pdm reports | |
- name: Build on ${{ matrix.python-version }} | |
run: pdm build | |
reports: | |
permissions: | |
contents: write | |
pull-requests: write | |
issues: write | |
runs-on: ubuntu-latest | |
environment: test | |
strategy: | |
matrix: | |
python-version: ["3.12"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies on ${{ matrix.python-version }} | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install pdm | |
pdm sync --dev | |
- name: Test reports on ${{ matrix.python-version }} | |
run: pdm reports | |
- name: Update PR with reports | |
uses: actions/github-script@v7 | |
if: ${{ github.event_name == 'pull_request' }} | |
with: | |
# language=javascript | |
script: | | |
const fs = require('fs') | |
const test_content = fs.readFileSync('reports/junit/junit.xml', 'utf8') | |
const coverage_content = fs.readFileSync('reports/coverage/coverage.xml', 'utf8') | |
const flake8_content = fs.readFileSync('reports/flake8/stats.txt', 'utf8') | |
const test_details = `<details><summary>Test Report</summary>\n\n\`\`\`xml\n${test_content}\n\`\`\`\n\n</details>` | |
const coverage_details = `<details><summary>Coverage Report</summary>\n\n\`\`\`xml\n${coverage_content}\n\`\`\`\n\n</details>` | |
const flake8_details = `<details><summary>Flake8 Report</summary>\n\n\`\`\`\n${flake8_content}\n\`\`\`\n\n</details>` | |
github.rest.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: `## Reports:\n${test_details}\n${coverage_details}\n${flake8_details}` | |
}) | |
- name: Build on ${{ matrix.python-version }} | |
run: pdm build | |
- name: Style | |
if: ${{ !cancelled() }} | |
run: pdm style | |
- name: Badges | |
if: ${{ !cancelled() && github.event_name == 'pull_request' }} | |
run: | | |
git config --global user.name 'Auto' | |
git config --global user.email '[email protected]' | |
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY | |
git fetch origin "${GITHUB_HEAD_REF}" | |
git checkout "${GITHUB_HEAD_REF}" | |
pdm badges-only | |
git commit -am "Update Badges" | |
git push |