Skip to content

Commit

Permalink
trying to fix the ci
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardolmedeiros committed Aug 16, 2024
1 parent 5929494 commit 4abeef4
Showing 1 changed file with 32 additions and 4 deletions.
36 changes: 32 additions & 4 deletions .github/workflows/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,40 @@ on:
- master

jobs:
build:
runs-on: ubuntu-latest
lint:
runs-on: ubuntu-20.04
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: "${{ github.repository }}"
- name: molecule
uses: robertdebock/[email protected]
uses: robertdebock/[email protected]
with:
command: lint
test:
needs:
- lint
runs-on: ubuntu-20.04
strategy:
matrix:
image:
- centos:7
- almalinux:8
- almalinux:9
- rockylinux:8
- rockylinux:9
- debian:bookworm
- debian:bullseye
- ubuntu:22.04
steps:
- name: checkout
uses: actions/checkout@v3
with:
path: "${{ github.repository }}"
- name: molecule
uses: robertdebock/[email protected]
with:
image: "${{ matrix.image }}"
options: parallel
scenario: my_specific_scenario

0 comments on commit 4abeef4

Please sign in to comment.