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 d2c008d
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/test-vagrant.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Test vagrant up

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

jobs:
build:
runs-on: macos-latest
timeout-minutes: 120
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 d2c008d

Please sign in to comment.