chore: fix spellcheck #152
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
--- | |
name: lint | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
max-parallel: 4 | |
env: | |
ANSIBLE_CALLBACKS_ENABLED: profile_tasks | |
ANSIBLE_EXTRA_VARS: "" | |
ANSIBLE_ROLE: juju4.harden_windows | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
path: ${{ env.ANSIBLE_ROLE }} | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: | | |
python3 --version | |
python3 -c "import ssl; print(ssl.OPENSSL_VERSION)" | |
python3 -c 'import ssl; ssl.PROTOCOL_TLSv1_2' | |
python3 -m pip install --upgrade pip | |
pip3 install ansible-lint flake8 yamllint ansible | |
ansible --version | |
cd $GITHUB_WORKSPACE/$ANSIBLE_ROLE | |
[ -f molecule/default/requirements.yml ] && ansible-galaxy install -r molecule/default/requirements.yml | |
[ -f get-dependencies.sh ] && sh -x get-dependencies.sh | |
{ echo '[defaults]'; echo 'callbacks_enabled = profile_tasks, timer'; echo 'roles_path = ../'; echo 'ansible_python_interpreter: /usr/bin/python3'; } >> ansible.cfg | |
- name: Fetch central settings repository | |
run: | | |
export settings_repo="https://raw.githubusercontent.com/juju4/ansible-ci-settings/main" | |
cd $GITHUB_WORKSPACE/$ANSIBLE_ROLE | |
set -x | |
curl -o requirements.txt "$settings_repo/requirements.txt" | |
# curl -o .ansible-lint "$settings_repo/.ansible-lint" | |
curl -o .yamllint "$settings_repo/.yamllint" | |
pip install -r requirements.txt | |
continue-on-error: true | |
- name: Environment | |
run: | | |
uname -a | |
pwd | |
env | |
find . -ls | |
ls / | |
ls /mnt | |
- uses: codespell-project/actions-codespell@master | |
with: | |
ignore_words_file: ${{ env.ANSIBLE_ROLE }}/.codespellignore | |
skip: .git,*/templates/workstation.inf,*/defaults/main.yml,*/vars/de-DE.yml | |
path: ${{ env.ANSIBLE_ROLE }} | |
if: ${{ always() }} | |
- name: yamllint | |
run: | | |
cd $GITHUB_WORKSPACE/$ANSIBLE_ROLE && yamllint . | |
if: ${{ always() }} | |
- name: ansible-lint | |
run: | | |
cd $GITHUB_WORKSPACE/$ANSIBLE_ROLE && ansible-lint | |
if: ${{ always() }} |