mirror of
https://github.com/appinfosapienza/so-un-bot.git
synced 2025-03-13 16:05:22 +01:00
15 lines
No EOL
377 B
YAML
15 lines
No EOL
377 B
YAML
name: Validate questions
|
|
|
|
# Configures this workflow to run every time a change is pushed to the branch called `release`.
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
validate-questions:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Validate questions
|
|
run: python scripts/validate_questions.py
|
|
shell: sh |