vagrant: fix the disk size to use postfix: "GB" #86
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: vagrant-up | |
on: [push, pull_request] | |
jobs: | |
vagrant-up: | |
runs-on: macos-12 | |
env: | |
VAGRANT_DISABLE_VBOXSYMLINKCREATE: "1" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run vagrant up | |
run: vagrant up | |
working-directory: .github/workflows |