Skip to content
This repository has been archived by the owner on Jun 2, 2024. It is now read-only.

Konfigurowalna nazwa pakietu #40

Konfigurowalna nazwa pakietu

Konfigurowalna nazwa pakietu #40

Workflow file for this run

name: Test build on Vagrant
on:
- push
- pull_request
jobs:
build:
runs-on: macos-12
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: "3.10"
- 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: Install Ansible
run: pip install ansible
- name: Run vagrant up
run: vagrant up