Docker cgroup fixes. #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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' |