mirror of
https://github.com/pi-hole/pi-hole.git
synced 2026-02-14 23:18:38 +00:00
Bumps the github-actions-dependencies group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [github/codeql-action](https://github.com/github/codeql-action). Updates `actions/checkout` from 5.0.0 to 6.0.0 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](08c6903cd8...1af3b93b68) Updates `github/codeql-action` from 4.31.3 to 4.31.4 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](014f16e7ab...e12f017898) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-dependencies - dependency-name: github/codeql-action dependency-version: 4.31.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
100 lines
2.7 KiB
YAML
100 lines
2.7 KiB
YAML
name: Test Supported Distributions
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened, ready_for_review]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
env:
|
|
FORCE_COLOR: 1
|
|
PYTHONUNBUFFERED: 1
|
|
PYTHONUTF8: 1
|
|
|
|
jobs:
|
|
smoke-tests:
|
|
if: github.event.pull_request.draft == false
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 #v6.0.0
|
|
with:
|
|
fetch-depth: 0 # Differential ShellCheck requires full git history
|
|
|
|
- name: Check scripts in repository are executable
|
|
run: |
|
|
IFS=$'\n';
|
|
for f in $(find . -name '*.sh'); do if [[ ! -x $f ]]; then echo "$f is not executable" && FAIL=1; fi ;done
|
|
unset IFS;
|
|
# If FAIL is 1 then we fail.
|
|
[[ $FAIL == 1 ]] && exit 1 || echo "Scripts are executable!"
|
|
|
|
- name: Differential ShellCheck
|
|
uses: redhat-plumbers-in-action/differential-shellcheck@0d9e5b29625f871e6a4215380486d6f1a7cb6cdd #v5.5.5
|
|
with:
|
|
severity: warning
|
|
display-engine: sarif-fmt
|
|
|
|
|
|
- name: Spell-Checking
|
|
uses: codespell-project/actions-codespell@8f01853be192eb0f849a5c7d721450e7a467c579 #v2.2
|
|
with:
|
|
ignore_words_file: .codespellignore
|
|
|
|
- name: Get editorconfig-checker
|
|
uses: editorconfig-checker/action-editorconfig-checker@4b6cd6190d435e7e084fb35e36a096e98506f7b9 #v2.1.0
|
|
|
|
- name: Run editorconfig-checker
|
|
run: editorconfig-checker
|
|
|
|
- name: Check python code formatting with black
|
|
uses: psf/black@05f0a8ce1f71fbb36e1e032d3b518c7b945089a2 #25.11.0
|
|
with:
|
|
src: "./test"
|
|
options: "--check --diff --color"
|
|
|
|
distro-test:
|
|
if: github.event.pull_request.draft == false
|
|
runs-on: ubuntu-latest
|
|
needs: smoke-tests
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
distro:
|
|
[
|
|
debian_11,
|
|
debian_12,
|
|
debian_13,
|
|
ubuntu_20,
|
|
ubuntu_22,
|
|
ubuntu_24,
|
|
centos_9,
|
|
centos_10,
|
|
fedora_40,
|
|
fedora_41,
|
|
fedora_42,
|
|
fedora_43,
|
|
alpine_3_21,
|
|
alpine_3_22,
|
|
]
|
|
env:
|
|
DISTRO: ${{matrix.distro}}
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 #v6.0.0
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c #v6.0.0
|
|
with:
|
|
python-version: "3.13"
|
|
|
|
- name: Install wheel
|
|
run: pip install wheel
|
|
|
|
- name: Install dependencies
|
|
run: pip install -r test/requirements.txt
|
|
|
|
- name: Test with tox
|
|
run: tox -c test/tox.${DISTRO}.ini
|