mirror of
https://github.com/devilbox/docker-php-fpm.git
synced 2025-12-10 11:01:14 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [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/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
66 lines
2.0 KiB
YAML
66 lines
2.0 KiB
YAML
---
|
|
|
|
# -------------------------------------------------------------------------------------------------
|
|
# Job Name
|
|
# -------------------------------------------------------------------------------------------------
|
|
name: generator
|
|
|
|
|
|
# -------------------------------------------------------------------------------------------------
|
|
# When to run
|
|
# -------------------------------------------------------------------------------------------------
|
|
on:
|
|
# Runs on Pull Requests
|
|
workflow_dispatch:
|
|
pull_request:
|
|
paths:
|
|
- '.ansible/**'
|
|
- '.github/workflows/action.yml'
|
|
- '.github/workflows/params.yml'
|
|
- 'Dockerfiles/**'
|
|
- 'php_modules/**'
|
|
- 'php_tools/**'
|
|
- 'tests/**'
|
|
- 'Makefile'
|
|
- '!**.md'
|
|
- '!.ansible/ansible.cfg'
|
|
|
|
|
|
# -------------------------------------------------------------------------------------------------
|
|
# What to run
|
|
# -------------------------------------------------------------------------------------------------
|
|
jobs:
|
|
generator:
|
|
name: "Generator"
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
# ------------------------------------------------------------
|
|
# Setup repository
|
|
# ------------------------------------------------------------
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Install Python 3.9
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.9'
|
|
|
|
- name: Install required Python packages
|
|
run: |
|
|
pip install yamllib
|
|
pip install typing
|
|
|
|
# ------------------------------------------------------------
|
|
# Lint repository
|
|
# ------------------------------------------------------------
|
|
- name: Lint Changelog
|
|
run: |
|
|
make lint-changelog
|
|
|
|
- name: Diff generated Docker files
|
|
run: |
|
|
make gen-dockerfiles
|
|
git diff --quiet || { echo "Build Changes"; git diff; git status; false; }
|