Skip to content

Commit

Permalink
Add molecule test for Oracle Linux 8
Browse files Browse the repository at this point in the history
  • Loading branch information
vitabaks committed Jun 21, 2021
1 parent dd5ee62 commit df59d7e
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/schedule_pg_oracle_linux8.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
# yamllint disable rule:truthy

name: scheduled PostgreSQL (OracleLinux 8)

on:
schedule:
- cron: '0 1 * * *'

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: checkout
uses: actions/checkout@v2

- name: Set up Python 3
uses: actions/setup-python@v2
with:
python-version: '3.x'

- name: Install dependencies
run: pip3 install molecule[docker] ansible

- name: Run Molecule tests
run: molecule test --scenario-name oraclelinux
env:
PY_COLORS: '1'
ANSIBLE_FORCE_COLOR: '1'
MOLECULE_DISTRO_TAG: latest

...

0 comments on commit df59d7e

Please sign in to comment.