Skip to content

Be consistent about quotes #16

Be consistent about quotes

Be consistent about quotes #16

Workflow file for this run

---
name: Molecule Test
on: [push]
jobs:
test:
runs-on: ubuntu-18.04
strategy:
max-parallel: 4
matrix:
python-version: [3.5]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
ls -hal
# sudo apt install docker
sudo apt update
sudo apt install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable"
sudo apt update
apt-cache policy docker-ce
sudo apt install docker-ce
python3 -m pip install --upgrade pip
./ci/scripts/python-dependencies.sh
- name: Test with molecule
run: |
molecule test