Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
24 lines
469 B
YAML
24 lines
469 B
YAML
name: Verify Dunder __init__.py Files
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
verify_dunder_init:
|
|
name: Verify __init__.py Files
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Check out branch
|
|
uses: actions/checkout@v5
|
|
|
|
- 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
|