-
Notifications
You must be signed in to change notification settings - Fork 1
49 lines (47 loc) · 1.15 KB
/
ansible_molecule_teststing.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
---
name: Molecule Testsing
on: # yamllint disable-line rule:truthy
push: null
pull_request:
branches:
- main
- master
permissions: read-all
concurrency:
group: >-
${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
jobs:
test_bareos:
runs-on: ubuntu-latest
container:
image: ubuntu:latest
volumes:
- "/sys/fs/cgroup:/sys/fs/cgroup:ro"
options: --privileged --cap-add SYS_ADMIN
permissions:
statuses: write
# strategy:
# fail-fast: false
# matrix:
# image:
# - alpine
# - debian
# - oracle
# - ubuntu
steps:
- name: checkout
uses: actions/checkout@v4
with:
path: "${{ github.repository }}"
- name: show dirs
run: |
ls -lh alexanderbazhenoff/ansible-collection-linux
molecule --version || true
- name: molecule
uses: gofrolist/molecule-action@v2
with:
molecule_working_dir: alexanderbazhenoff/ansible-collection-linux
scenario: default
env:
ANSIBLE_FORCE_COLOR: '1'