Skip to content

more doc update

more doc update #20

Workflow file for this run

name: vagrant-up
on: [push]
jobs:
vagrant-up:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up vagrant and libvirt
uses: ./.github/actions/vagrant-setup
- name: Cache Vagrant boxes
uses: actions/cache@v4
with:
path: ~/.vagrant.d/boxes
key: ${{ runner.os }}-vagrant-${{ hashFiles('Vagrantfile') }}
restore-keys: |
${{ runner.os }}-vagrant-
- name: Show Vagrant version
run: vagrant --version
- name: Run vagrant up
run: vagrant up