feat(install): Support default site language #31
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: 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: Run yamllint | |
uses: frenck/action-yamllint@v1 | |
with: | |
config: './.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 }} |