Skip to content

Merge pull request #868 from pwnlandia/2023-project-announcement #14

Merge pull request #868 from pwnlandia/2023-project-announcement

Merge pull request #868 from pwnlandia/2023-project-announcement #14

Workflow file for this run

name: Ubuntu 16.04
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches:
- master
pull_request:
branches:
- master
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
vagrant-up:
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: Show Vagrant version
run: vagrant --version
- name: Run Ubuntu 16.04
run: vagrant up ubuntu1604 --provision-with dependencies