- rst heading definitions - indirect hyperlinks and code-blocks added for better readability - MarkDown warnings resolved - Yaml style issues fixed
24 lines
439 B
YAML
24 lines
439 B
YAML
name: CI
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
verify_dunder_init:
|
|
name: Verify __init__.py Files
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
- name: Check out branch
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Ensure git is installed
|
|
run: |
|
|
sudo apt-get update && sudo apt-get install git
|
|
|
|
- name: Verify __init__.py files exist
|
|
run: |
|
|
scripts/verify-dunder-init.sh
|