-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
193 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,219 @@ | ||
name: Test | ||
'on': | ||
- push | ||
- pull_request | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
jobs: | ||
test: | ||
name: Test | ||
editorconfig: | ||
name: Editorconfig | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Python 3.12 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.12' | ||
|
||
- name: Install editorconfig-checker | ||
- name: Install latest editorconfig-checker version | ||
run: | | ||
gh release download --pattern "*linux-amd64.tar.gz" --dir /tmp | ||
tar xvzf /tmp/ec-linux-amd64.tar.gz -C /tmp | ||
chmod +x /tmp/bin/ec-linux-amd64 | ||
mv /tmp/bin/ec-linux-amd64 /usr/local/bin/ec | ||
tar --extract --gzip --strip-components 1 --file /tmp/ec-linux-amd64.tar.gz --directory /tmp | ||
chmod +x /tmp/ec-linux-amd64 | ||
mv /tmp/ec-linux-amd64 /usr/local/bin/ec | ||
env: | ||
GH_REPO: editorconfig-checker/editorconfig-checker | ||
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | ||
|
||
- name: Install hadolint | ||
- name: Run editorconfig-checker | ||
run: | | ||
ec | ||
dockerfile: | ||
name: Dockerfile | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Check for Dockerfile files | ||
id: check_dockerfile | ||
uses: andstor/file-existence-action@v2 | ||
with: | ||
files: "**/Dockerfile*" | ||
|
||
- name: Install latest hadolint version | ||
if: steps.check_dockerfile.outputs.files_exists == 'true' | ||
run: | | ||
gh release download --pattern "*Linux-x86_64" --dir /usr/local/bin | ||
chmod +x /usr/local/bin/hadolint-Linux-x86_64 | ||
ln --symbolic /usr/local/bin/hadolint-Linux-x86_64 /usr/local/bin/hadolint | ||
gh release download --pattern "*Linux-x86_64" --dir /tmp | ||
chmod +x /tmp/hadolint-Linux-x86_64 | ||
mv /tmp/hadolint-Linux-x86_64 /usr/local/bin/hadolint | ||
env: | ||
GH_REPO: hadolint/hadolint | ||
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | ||
|
||
- name: Run hadolint | ||
if: steps.check_dockerfile.outputs.files_exists == 'true' | ||
run: | | ||
find . -name "Dockerfile*" -not -name "Dockerfile.j2" -print0 | xargs -0 -I{} hadolint "{}" | ||
shell: | ||
name: Shell | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Check for Shell files | ||
id: check_shell | ||
uses: andstor/file-existence-action@v2 | ||
with: | ||
files: "**/*.sh" | ||
|
||
- name: Install latest shellcheck version | ||
if: steps.check_shell.outputs.files_exists == 'true' | ||
run: | | ||
gh release download --pattern "*linux.x86_64.tar.xz" --dir /tmp | ||
tar --extract --xz --strip-components 1 --file /tmp/shellcheck-*.linux.x86_64.tar.xz --directory /tmp | ||
chmod +x /tmp/shellcheck | ||
mv /tmp/shellcheck /usr/local/bin/shellcheck | ||
env: | ||
GH_REPO: koalaman/shellcheck | ||
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | ||
|
||
- name: Run shellcheck | ||
if: steps.check_shell.outputs.files_exists == 'true' | ||
run: | | ||
find . -name "*.sh" -not -path "*/ansible_collections/*" -print0 | xargs -0 -I{} shellcheck --external-sources "{}" | ||
yaml: | ||
name: YAML | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Check for YAML files | ||
id: check_yaml | ||
uses: andstor/file-existence-action@v2 | ||
with: | ||
files: "**/*.yml" | ||
|
||
- name: Install latest yamllint version | ||
if: steps.check_yaml.outputs.files_exists == 'true' | ||
run: | | ||
pip3 install --disable-pip-version-check yamllint | ||
- name: Run yamllint | ||
if: steps.check_yaml.outputs.files_exists == 'true' | ||
run: | | ||
yamllint --strict . | ||
python: | ||
name: Python | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Check for Python files | ||
id: check_python | ||
uses: andstor/file-existence-action@v2 | ||
with: | ||
files: "**/*.py" | ||
|
||
- name: Install latest flake8 version | ||
if: steps.check_python.outputs.files_exists == 'true' | ||
run: | | ||
pip3 install --disable-pip-version-check flake8 | ||
- name: Run flake8 | ||
if: steps.check_python.outputs.files_exists == 'true' | ||
run: | | ||
flake8 --show-source . | ||
- name: Install latest isort version | ||
if: steps.check_python.outputs.files_exists == 'true' | ||
run: | | ||
pip3 install --disable-pip-version-check isort[colors] | ||
- name: Run isort | ||
if: steps.check_python.outputs.files_exists == 'true' | ||
run: | | ||
isort . --check-only --diff --color | ||
ansible: | ||
name: Ansible | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Python 3.x | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.x' | ||
|
||
- name: Check for Ansible playbook files | ||
id: check_ansible_playbook | ||
uses: andstor/file-existence-action@v2 | ||
with: | ||
files: "hosts, site.yml, requirements.yml" | ||
|
||
- name: Install latest ansible version | ||
if: steps.check_ansible_playbook.outputs.files_exists == 'true' | ||
run: | | ||
pip3 install --disable-pip-version-check ansible | ||
- name: Install latest ansible-lint version | ||
if: steps.check_ansible_playbook.outputs.files_exists == 'true' | ||
run: | | ||
pip3 install --disable-pip-version-check ansible-lint | ||
- name: Run ansible-lint | ||
if: steps.check_ansible_playbook.outputs.files_exists == 'true' | ||
run: | | ||
find . -maxdepth 1 -name "*.yml" -not -name "requirements.yml" | xargs -n1 ansible-lint --force-color | ||
test: | ||
name: Docker-Compose Test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Check for Docker-Compose test file | ||
id: check_docker_compose_test | ||
uses: andstor/file-existence-action@v2 | ||
with: | ||
files: "docker-compose.test.yml" | ||
|
||
- name: Run docker-compose test | ||
if: steps.check_docker_compose_test.outputs.files_exists == 'true' | ||
run: | | ||
docker-compose -f docker-compose.test.yml build | ||
tox: | ||
name: Tox Test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Python 3.12 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.12' | ||
|
||
- name: Check for Tox file | ||
id: check_tox | ||
uses: andstor/file-existence-action@v2 | ||
with: | ||
files: "tox.ini" | ||
|
||
- name: Install test dependencies | ||
if: steps.check_tox.outputs.files_exists == 'true' | ||
run: | | ||
make dev-requirements | ||
- name: Run tox | ||
if: steps.check_tox.outputs.files_exists == 'true' | ||
run: | | ||
make lint | ||
make test |