We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ae802a commit a628359Copy full SHA for a628359
.github/workflows/ansible-deployments.yml
@@ -0,0 +1,26 @@
1
+name: Test contest deployment (ansible scripts)
2
+
3
+on: [push,pull_request]
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - name: Checkout repo
10
+ uses: actions/checkout@v2
11
+ - name: Install ansible lint tools
12
+ run: sudo apt install ansible-lint
13
+ - name: Lint the different scripts
14
+ run: cd icpc-wf/ansible; ansible-lint .
15
+ #deployAnsible:
16
+ #needs: build
17
+ #runs-on: ubuntu-latest
18
+ #steps:
19
+ #- uses: actions/checkout@v1
20
+ # - uses: ./.github/actions/ansible
21
+ #
22
+ # with:
23
+ # playbook: playbook.yml
24
+ # inventory: localhost
25
26
0 commit comments