10ed2c3f44
* Fix for Debian 11 install * Pin CentOS version * Bump Python version
22 lines
488 B
YAML
22 lines
488 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.8
|
|
- 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
|