3bd0b3d497
Co-authored-by: verbumfeit <verbumfeit@tuta.io>
21 lines
487 B
YAML
21 lines
487 B
YAML
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:
|
|
python-version: 3.7
|
|
- name: Install Molecule
|
|
run: |
|
|
pip install -U pip setuptools wheel
|
|
pip install -r requirements-dev.txt
|
|
# - name: Debugging with tmate
|
|
# uses: mxschmitt/action-tmate@v3.5
|
|
- name: Test using Molecule
|
|
run: molecule test |