Update aws packages #977
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: vagrant | |
on: [push] | |
jobs: | |
molecule-vagrant-ubuntu: | |
runs-on: macos-10.15 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Cache pipenv virtualenvs incl. all pip packages | |
uses: actions/cache@v2 | |
with: | |
path: ~/.local/share/virtualenvs | |
key: ${{ runner.os }}-pipenv-${{ hashFiles('**/Pipfile.lock') }} | |
restore-keys: | | |
${{ runner.os }}-pipenv- | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: '3.9' | |
- name: Install required dependecies with pipenv | |
run: | | |
pip install pipenv | |
pipenv install | |
- name: Molecule testing GHA-locally with Vagrant Ubuntu Bionic | |
run: | | |
pipenv run molecule create --scenario-name vagrant-ubuntu | |
pipenv run molecule converge --scenario-name vagrant-ubuntu | |
pipenv run molecule verify --scenario-name vagrant-ubuntu | |
pipenv run molecule destroy --scenario-name vagrant-ubuntu |