Skip to content

updated to venv; update license year #132

updated to venv; update license year

updated to venv; update license year #132

Workflow file for this run

name: CI
"on":
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Molecule
runs-on: ubuntu-latest
strategy:
matrix:
distro:
- rockylinux8
- ubuntu2004
steps:
- name: Check out the codebase
uses: actions/checkout@v3
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install test dependencies
run: pip install -r requirements.txt
- name: Run molecule
run: molecule test
env:
PY_COLORS: '1'
ANSIBLE_FORCE_COLOR: '1'
MOLECULE_DISTRO: ${{ matrix.distro }}