-
Notifications
You must be signed in to change notification settings - Fork 1
90 lines (83 loc) · 2.45 KB
/
tests-and-tag.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
name: Lint, test and tag
on: push
jobs:
lint-all-files:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: run-ansible-lint
uses: ansible/[email protected]
molecule-act-default:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
path: "${{ github.repository }}"
- name: Run molecule tests for act role
uses: gofrolist/molecule-action@v2
with:
molecule_working_dir: ${{ github.repository }}/roles/act
molecule_args: --driver-name docker
env:
ANSIBLE_FORCE_COLOR: '1'
molecule-gitea-default:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
path: "${{ github.repository }}"
- name: Run molecule tests for gitea role
uses: gofrolist/molecule-action@v2
with:
molecule_working_dir: ${{ github.repository }}/roles/gitea
molecule_args: --driver-name docker
env:
ANSIBLE_FORCE_COLOR: '1'
molecule-gitea-update:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
path: "${{ github.repository }}"
- name: Run molecule tests for gitea role
uses: gofrolist/molecule-action@v2
with:
molecule_working_dir: ${{ github.repository }}/roles/gitea
molecule_args: --driver-name docker -s update
env:
ANSIBLE_FORCE_COLOR: '1'
molecule-gitea-and-act:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
path: "${{ github.repository }}"
- name: Run molecule tests for act and gitea roles together
uses: gofrolist/molecule-action@v2
with:
molecule_working_dir: ${{ github.repository }}
molecule_args: --driver-name docker
env:
ANSIBLE_FORCE_COLOR: '1'
tag-new-versions:
runs-on: ubuntu-latest
needs:
- molecule-act-default
- molecule-gitea-default
- molecule-gitea-update
- molecule-gitea-and-act
- lint-all-files
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 2
- uses: salsify/action-detect-and-tag-new-version@v2
with:
version-command: |
awk ' /version: / { print $2 } ' galaxy.yml | tr -d '"'