Skip to content

Commit

Permalink
gh_actions: add testing action for vagrant up
Browse files Browse the repository at this point in the history
  • Loading branch information
miri64 committed Nov 29, 2023
1 parent 96eb538 commit 3753c05
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/test-vagrant.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Test vagrant up

on:
push:
branches:
- main
tags:
- '*'
pull_request:
branches:
- main
schedule:
- cron: '46 3 * * 2'

jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@main
with:
submodules: true
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }}
- name: Install vagrant plugins
run: vagrant plugin install vagrant-reload
- name: Run vagrant up
run: vagrant up
- name: SSH into box after boot
run: vagrant ssh -c "ls Artifacts-CoNEXT23-DoC"

0 comments on commit 3753c05

Please sign in to comment.