Switch to github actions

This commit is contained in:
Fabian Koller 2020-12-31 11:48:05 +01:00
parent fc31195fa0
commit 51fd19c315
No known key found for this signature in database
GPG Key ID: 4EFE4C946404B82A
2 changed files with 33 additions and 10 deletions

33
.github/workflows/ansible.yml vendored Normal file
View File

@ -0,0 +1,33 @@
---
name: Ansible Role
on: push
jobs:
test:
# https://molecule.readthedocs.io/en/latest/ci.html#github-actions
runs-on: ubuntu-latest
# https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#github-context
if: contains(github.ref, 'refs/heads/')
steps:
- name: Check out the codebase
uses: actions/checkout@v2
with:
path: "${{ github.repository }}"
- name: Set up Python
uses: actions/setup-python@v2
- name: Set up Docker
uses: docker-practice/actions-setup-docker@master
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install molecule[ansible,docker]
ansible --version
docker --version
molecule --version
python --version
- name: Test with molecule
run: |
cd ansible
molecule test
working-directory: "${{ github.repository }}"

View File

@ -33,16 +33,6 @@ jobs:
- ng build --prod - ng build --prod
after_success: true after_success: true
- name: "Ansible role"
sudo: required
services:
- docker
install:
- python3 -m pip install molecule[ansible,docker]
script:
- cd ansible/
- molecule test
after_success: true
before_install: before_install:
- sudo apt-get update -qq - sudo apt-get update -qq