diff --git a/.forgejo/workflows/lint.yml b/.forgejo/workflows/lint.yml index f1c1e63..f27a624 100644 --- a/.forgejo/workflows/lint.yml +++ b/.forgejo/workflows/lint.yml @@ -23,14 +23,20 @@ jobs: - uses: actions/checkout@v3 # definitely needs nodejs, probably git - name: ansible/collections + shell: bash run: | + echo /root/.local/bin >> $FORGEJO_PATH pipx install ansible-core ansible-lint ansible-galaxy collection install -r meta/requirements.yml env: PY_COLORS: '1' ANSIBLE_FORCE_COLOR: '1' - - run: ansible-lint + - name: ansible-lint + shell: bash + run: | + echo /root/.local/bin >> $FORGEJO_PATH + ansible-lint env: PY_COLORS: '1' ANSIBLE_FORCE_COLOR: '1'