Skip to content

vagrant-up

vagrant-up #69

Workflow file for this run

name: vagrant-up
on:
push:
schedule:
- cron: "0 0 * * 0"
workflow_dispatch:
jobs:
vagrant-up:
runs-on: macos-12
timeout-minutes: 20
steps:
- uses: actions/checkout@v3
- name: Cache Vagrant boxes
uses: actions/cache@v3
with:
path: ~/.vagrant.d/boxes
key: |
${{ runner.os }}-vagrant-${{ hashFiles('Vagrantfile') }}
- name: Run vagrant up
run: vagrant up
- name: ssh into box after boot
run: vagrant ssh -c "echo 'hello world!'"