2020-03-09 06:23:13 +01:00
|
|
|
name: Test
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
with:
|
2021-08-18 16:53:42 +02:00
|
|
|
python-version: 3.8
|
2020-03-09 06:23:13 +01:00
|
|
|
- name: Install Molecule
|
|
|
|
run: |
|
2021-04-20 08:53:35 +02:00
|
|
|
pip install -U pip setuptools wheel
|
|
|
|
pip install -r requirements-dev.txt
|
|
|
|
# - name: Debugging with tmate
|
|
|
|
# uses: mxschmitt/action-tmate@v3.5
|
2020-03-09 06:23:13 +01:00
|
|
|
- name: Test using Molecule
|
2021-08-18 16:53:42 +02:00
|
|
|
run: molecule test
|