Skip to content

Commit 022e76d

Browse files
Add mode to unarchive
1 parent 05d3d60 commit 022e76d

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

.github/workflows/lifecycle.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,25 @@ on:
88
schedule:
99
- cron: '0 6 * * 0'
1010
jobs:
11+
lint:
12+
runs-on: ubuntu-latest
13+
strategy:
14+
fail-fast: false
15+
steps:
16+
- name: checkout
17+
uses: actions/checkout@v2
18+
with:
19+
path: "${{ github.repository }}"
20+
- name: Molecule for Ansible - lint
21+
uses: MonolithProjects/[email protected]
22+
env:
23+
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
24+
with:
25+
molecule_command: lint
26+
1127
test_lifecycle:
1228
runs-on: ubuntu-latest
29+
needs: lint
1330
strategy:
1431
fail-fast: false
1532
steps:

tasks/install_runner.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
src: "./actions-runner-linux-{{ runner_version }}.tar.gz"
5151
dest: "{{ runner_dir }}/"
5252
owner: "{{ runner_user }}"
53+
mode: 0644
5354
tags:
5455
- install
5556

0 commit comments

Comments
 (0)