Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [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/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
26 lines
492 B
YAML
26 lines
492 B
YAML
name: Verify Dunder __init__.py Files
|
|
|
|
on:
|
|
pull_request:
|
|
merge_group:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
verify_dunder_init:
|
|
name: Verify __init__.py Files
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Check out branch
|
|
uses: actions/checkout@v6
|
|
|
|
- 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
|