Skip to content

Update docs for local testing #74

Update docs for local testing

Update docs for local testing #74

Workflow file for this run

name: "Vagrant (KVM) Tests"
on:
pull_request:
push:
branches:
- main
jobs:
# https://github.com/jonashackt/vagrant-github-actions
test-kvm:
name: "KVM Test"
runs-on: macos-10.15
steps:
- uses: actions/checkout@v2
- name: Cache Vagrant boxes
uses: actions/cache@v2
with:
path: ~/.vagrant.d/boxes
key: ${{ runner.os }}-vagrant-${{ hashFiles('Vagrantfile') }}
restore-keys: |
${{ runner.os }}-vagrant-
- name: Install test dependencies.
run: sudo pip3 install ansible
- name: Install Ansible Dependencies
working-directory: tests/ubuntu2004-singlenode
run: |
ansible-galaxy collection install community.general
ansible-galaxy collection install ansible.posix
- name: Show Vagrant version
run: vagrant --version
- name: Run vagrant up
working-directory: tests/ubuntu2004-singlenode
run: vagrant up