Skip to content

Docker cgroup fixes. #4

Docker cgroup fixes.

Docker cgroup fixes. #4

Workflow file for this run

---
name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
defaults:
run:
working-directory: apollo13.borgbackup
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
molecule-distro:
- "rockylinux:9"
- "ubuntu:22.04"
env:
MOLECULE_DISTRO: ${{ matrix.molecule-distro }}
steps:
- uses: actions/checkout@v2
with:
path: apollo13.borgbackup
- uses: actions/setup-python@v2
- name: Install dependencies
run: |
python -m pip install wheel
python -m pip install ansible molecule[testinfra] molecule-plugins[docker] yamllint ansible-lint flake8
- name: Molecule test
run: molecule test
env:
PY_COLORS: '1'
ANSIBLE_FORCE_COLOR: '1'