Skip to content

Commit

Permalink
ci: add italic reporter
Browse files Browse the repository at this point in the history
  • Loading branch information
mishamyrt committed Sep 25, 2024
1 parent 821d445 commit 19f7b64
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/italic_progress.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Report Italic Progress

on:
pull_request

jobs:
build:
permissions: write-all
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11'

- name: Bootstrap environment
run: make configure

- name: Get progress
run: |
. venv/bin/activate
python scripts/porting.py progress -m > progress.md
- name: Post progress
uses: marocchino/sticky-pull-request-comment@v2
with:
path: progress.md

0 comments on commit 19f7b64

Please sign in to comment.