forked from theforeman/forklift
-
Notifications
You must be signed in to change notification settings - Fork 1
64 lines (59 loc) · 1.43 KB
/
main.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: CI
on: [push, pull_request]
env:
COLORTERM: 'yes'
TERM: 'xterm-256color'
PYTEST_ADDOPTS: '--color=yes'
jobs:
ansible-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3"
- name: Install ansible-lint
run: pip install ansible-lint ansible
- name: Run tests
run: |
ansible-lint playbooks/
ansible-lint roles/
ansible-lint pipelines/
molecule:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3"
- name: Install molecule
run: pip install 'molecule<6' ansible
- name: Run tests
run: |
for roledir in roles/*/molecule; do
pushd $(dirname $roledir)
molecule test
popd
done
vagrant:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- '2.7'
- '3.0'
- '3.1'
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
working-directory: vagrant
- name: Run tests
run: bundle exec rake
working-directory: vagrant