diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml index b2814ab..1878eb6 100644 --- a/.github/workflows/blank.yml +++ b/.github/workflows/blank.yml @@ -26,11 +26,17 @@ jobs: - uses: actions/checkout@v2 # Runs a single command using the runners shell - - name: Run a one-line script - run: sudo apt-get install vagrant + - name: Update Aptitude + run: sudo apt-get update + + # Runs a single command using the runners shell + - name: Install Vagrant + run: | + sudo apt-get install vagrant + vagrant --version # Runs a set of commands using the runners shell - - name: Run a multi-line script + - name: Install VirtualBox run: | - echo Add other actions to build, - echo test, and deploy your project. + sudo apt-get install virtualbox + virtualbox --version