2020-12-01 10:02:31 +00:00
|
|
|
name: Test Supported Distributions
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
types: [opened, synchronize, reopened, ready_for_review]
|
|
|
|
|
2022-04-16 02:26:56 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2020-12-01 10:02:31 +00:00
|
|
|
jobs:
|
2022-07-02 13:00:17 +00:00
|
|
|
smoke-tests:
|
2021-10-05 18:34:51 +00:00
|
|
|
if: github.event.pull_request.draft == false
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout repository
|
2022-05-12 07:23:57 +00:00
|
|
|
uses: actions/checkout@v3
|
2021-10-05 18:34:51 +00:00
|
|
|
-
|
2022-07-02 13:00:17 +00:00
|
|
|
name: Check scripts in repository are executable
|
2021-10-05 18:34:51 +00:00
|
|
|
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.
|
2022-07-02 13:00:17 +00:00
|
|
|
[[ $FAIL == 1 ]] && exit 1 || echo "Scripts are executable!"
|
|
|
|
-
|
|
|
|
name: Spell-Checking
|
|
|
|
uses: codespell-project/actions-codespell@master
|
|
|
|
with:
|
|
|
|
ignore_words_file: .codespellignore
|
|
|
|
-
|
|
|
|
name: Get editorconfig-checker
|
|
|
|
uses: editorconfig-checker/action-editorconfig-checker@main
|
|
|
|
-
|
|
|
|
name: Run editorconfig-checker
|
|
|
|
run: editorconfig-checker
|
|
|
|
|
2021-10-05 18:34:51 +00:00
|
|
|
|
2020-12-01 10:02:31 +00:00
|
|
|
distro-test:
|
|
|
|
if: github.event.pull_request.draft == false
|
|
|
|
runs-on: ubuntu-latest
|
2022-07-02 13:00:17 +00:00
|
|
|
needs: smoke-tests
|
2020-12-01 10:02:31 +00:00
|
|
|
strategy:
|
2022-07-25 20:57:30 +00:00
|
|
|
fail-fast: false
|
2020-12-01 10:02:31 +00:00
|
|
|
matrix:
|
2022-06-25 21:09:10 +00:00
|
|
|
distro: [debian_10, debian_11, ubuntu_18, ubuntu_20, ubuntu_21, ubuntu_22, centos_7, centos_8, fedora_34]
|
2020-12-01 10:02:31 +00:00
|
|
|
env:
|
2020-12-01 10:09:16 +00:00
|
|
|
DISTRO: ${{matrix.distro}}
|
|
|
|
steps:
|
2021-10-05 18:34:51 +00:00
|
|
|
-
|
|
|
|
name: Checkout repository
|
2022-05-12 07:23:57 +00:00
|
|
|
uses: actions/checkout@v3
|
2021-10-05 18:34:51 +00:00
|
|
|
-
|
2021-11-18 01:03:37 +00:00
|
|
|
name: Set up Python 3.8
|
2022-06-12 11:35:59 +00:00
|
|
|
uses: actions/setup-python@v4
|
2020-12-01 10:02:31 +00:00
|
|
|
with:
|
2021-11-18 01:03:37 +00:00
|
|
|
python-version: 3.8
|
2021-10-05 18:34:51 +00:00
|
|
|
-
|
|
|
|
name: Install dependencies
|
2020-12-01 10:02:31 +00:00
|
|
|
run: pip install -r test/requirements.txt
|
2021-10-05 18:34:51 +00:00
|
|
|
-
|
|
|
|
name: Test with tox
|
2020-12-01 10:02:31 +00:00
|
|
|
run: tox -c test/tox.${DISTRO}.ini
|