Skip to content

Commit

Permalink
feat(ci): Add test workflow (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
konradasb authored Nov 9, 2023
1 parent eec9635 commit 3ba2c6f
Showing 1 changed file with 66 additions and 0 deletions.
66 changes: 66 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
---
name: test

on:
pull_request:

jobs:
changed-files:
runs-on: ubuntu-latest
outputs:
roles: ${{ steps.changed-files.outputs.all_changed_files }}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v40
with:
dir_names: "true"
escape_json: "false"
json: "true"
dir_names_max_depth: 2
files: |
roles/**
- name: List all changed files
run: |
echo '${{ steps.changed-files.outputs.all_changed_files }}'
test:
if: needs.changed-files.outputs.roles != '[]'
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
role: ${{ fromJson(needs.changed-files.outputs.roles) }}
distro:
- ubuntu2204
- ubuntu2004
- debian12
- debian11
- debian10
needs: changed-files
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Set up Python 3
uses: actions/setup-python@v2
with:
python-version: '3.x'

- name: Install dependencies
run: |
pip3 install ansible molecule molecule-plugins[docker]
- name: Run Molecule tests.
run: |
cd ${{ matrix.role }} && molecule test
env:
ANSIBLE_FORCE_COLOR: '1'
PY_COLORS: '1'
MOLECULE_DISTRO: ${{ matrix.distro }}

0 comments on commit 3ba2c6f

Please sign in to comment.