mirror of
https://github.com/Theodor-Springmann-Stiftung/KGPZ.git
synced 2025-10-29 09:05:30 +00:00
21 lines
401 B
YAML
21 lines
401 B
YAML
name: Output Category Stats
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
output-stats:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Run stats script
|
|
env:
|
|
INPUT_DIR: './XML/beitraege' # Path to your XML files directory
|
|
run: |
|
|
python Scripts/stats.py
|
|
cat ./stats.txt # Output stats to console
|