From 7b76104a6883d577e890ca62837f701ace950dfe Mon Sep 17 00:00:00 2001 From: L3D Date: Wed, 6 Oct 2021 11:06:26 +0200 Subject: [PATCH] created bullseye action --- .github/workflows/ansible-debian-bullseye.yml | 18 ++++++++++++++++++ .github/workflows/galaxy.yml | 1 + 2 files changed, 19 insertions(+) create mode 100644 .github/workflows/ansible-debian-bullseye.yml diff --git a/.github/workflows/ansible-debian-bullseye.yml b/.github/workflows/ansible-debian-bullseye.yml new file mode 100644 index 0000000..4b7c45d --- /dev/null +++ b/.github/workflows/ansible-debian-bullseye.yml @@ -0,0 +1,18 @@ +--- +name: Ansible check debian:bullseye + +# yamllint disable-line rule:truthy +on: [push, pull_request] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: ansible check with debian:bullseye + uses: roles-ansible/check-ansible-debian-bullseye-action@main + with: + targets: "./" diff --git a/.github/workflows/galaxy.yml b/.github/workflows/galaxy.yml index d144e96..b5dc0ec 100644 --- a/.github/workflows/galaxy.yml +++ b/.github/workflows/galaxy.yml @@ -1,6 +1,7 @@ --- name: Galaxy release +# yamllint disable-line rule:truthy on: push: branches: ['main']