We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd5ee62 commit df59d7eCopy full SHA for df59d7e
.github/workflows/schedule_pg_oracle_linux8.yml
@@ -0,0 +1,33 @@
1
+---
2
+# yamllint disable rule:truthy
3
+
4
+name: scheduled PostgreSQL (OracleLinux 8)
5
6
+on:
7
+ schedule:
8
+ - cron: '0 1 * * *'
9
10
+jobs:
11
+ test:
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - name: checkout
16
+ uses: actions/checkout@v2
17
18
+ - name: Set up Python 3
19
+ uses: actions/setup-python@v2
20
+ with:
21
+ python-version: '3.x'
22
23
+ - name: Install dependencies
24
+ run: pip3 install molecule[docker] ansible
25
26
+ - name: Run Molecule tests
27
+ run: molecule test --scenario-name oraclelinux
28
+ env:
29
+ PY_COLORS: '1'
30
+ ANSIBLE_FORCE_COLOR: '1'
31
+ MOLECULE_DISTRO_TAG: latest
32
33
+...
0 commit comments