From 85bb753dd4fd7a47cad29fe3d6ba22e1f6116ef8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Krawczyk?= <616047+kravietz@users.noreply.github.com> Date: Sat, 7 Aug 2021 14:12:13 +0100 Subject: [PATCH] Use another action --- .github/workflows/main.yml | 33 +++++++++------------------------ 1 file changed, 9 insertions(+), 24 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8d4af6d..ae09f50 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,30 +15,15 @@ jobs: strategy: fail-fast: false matrix: - config: - - os: centos/systemd - tag: latest - # - os: debian - # tag: latest - # - os: ubuntu - # tag: latest - # - os: centos - # tag: latest - # - os: fedora - # tag: latest - # - os: archlinux - # tag: latest - # - os: latest - # tag: latest - + image: + - debian + - centos steps: - - uses: actions/checkout@v2 + - name: checkout + uses: actions/checkout@v2 with: - path: ${{ github.repository }} - - - - name: Ansible Molecule - uses: MonolithProjects/action-molecule@v1.4.3 + path: "${{ github.repository }}" + - name: molecule + uses: robertdebock/molecule-action@2.6.17 with: - os: ${{ matrix.config.os }} - tag: ${{ matrix.config.tag }} + image: "${{ matrix.image }}" \ No newline at end of file