Skip to content

feat(install): Support default site language #33

feat(install): Support default site language

feat(install): Support default site language #33

Workflow file for this run

---
name: Ansible Role Drupal CI
'on':
pull_request:
push:
branches:
- master
- main
defaults:
run:
working-directory: 'bmeme.drupal'
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
-
name: Check out the codebase.
uses: actions/checkout@v2
with:
path: 'bmeme.drupal'
-
name: test
run: |
{
ls -la; \
pwd
}
-
name: Run yamllint
uses: frenck/action-yamllint@v1
with:
config: '${{ github.workspace }}/bmeme.drupal/.yamllint'
-
name: Run ansible-lint
uses: ansible/ansible-lint@v6.22.0
# -
# name: Lint code.
# run: |
# yamllint .
# ansible-lint -x 106 208
# molecule:
# name: Molecule
# runs-on: ubuntu-latest
# strategy:
# matrix:
# include:
# - distro: ubuntu2004
# playbook: converge.yml
# steps:
# - name: Check out the codebase.
# uses: actions/checkout@v2
# with:
# path: 'bmeme.drupal'
# - name: Set up Python 3.
# uses: actions/setup-python@v2
# with:
# python-version: '3.x'
# - name: Install test dependencies.
# run: pip3 install ansible molecule[docker] docker
# - name: Run Molecule tests.
# run: molecule test
# env:
# PY_COLORS: '1'
# ANSIBLE_FORCE_COLOR: '1'
# MOLECULE_DISTRO: ${{ matrix.distro }}
# MOLECULE_PLAYBOOK: ${{ matrix.playbook }}