Skip to content

Commit

Permalink
Issue #36: Use checkout v2 for GitHub Actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
geerlingguy committed Aug 31, 2020
1 parent f9d2619 commit a14e64d
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/molecule-kind.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
---
name: Molecule Kind Test
on:
push:
branches:
- master
pull_request:
schedule:
- cron: '0 6 * * *'

jobs:

build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

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

- name: Install dependencies.
run: >
pip3 install molecule docker openshift
ansible-lint yamllint
- name: Run molecule test.
run: molecule test
env:
PY_COLORS: '1'
ANSIBLE_FORCE_COLOR: '1'
working-directory: ./testing-molecule-kind

0 comments on commit a14e64d

Please sign in to comment.