Thanks to visit codestin.com
Credit goes to github.com

Skip to content

[IND-4226] [COMPLIANCE] Update Copyright Headers (Batch 6 of 7) #1957

[IND-4226] [COMPLIANCE] Update Copyright Headers (Batch 6 of 7)

[IND-4226] [COMPLIANCE] Update Copyright Headers (Batch 6 of 7) #1957

Workflow file for this run

name: Vagrant Ruby Tests
on:
push:
branches:
- main
- 'test-*'
paths:
- 'bin/**'
- 'lib/**'
- 'plugins/**'
- 'test/**'
- 'templates/**'
- 'Gemfile'
- 'vagrant.gemspec'
- 'Rakefile'
pull_request:
branches:
- main
paths:
- 'bin/**'
- 'lib/**'
- 'plugins/**'
- 'test/**'
- 'Gemfile'
- 'templates/**'
- 'vagrant.gemspec'
- 'Rakefile'
jobs:
unit-tests-ruby:
runs-on: ubuntu-latest
continue-on-error: true
strategy:
matrix:
ruby: [ '3.1', '3.2', '3.3', '3.4' ]
name: Vagrant unit tests on Ruby ${{ matrix.ruby }}
steps:
- name: Code Checkout
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Setup Ruby
uses: ruby/setup-ruby@d697be2f83c6234b20877c3b5eac7a7f342f0d0c # v1.269.0
with:
ruby-version: ${{matrix.ruby}}
bundler-cache: true
- name: install dependencies
run: |
sudo apt-get update
sudo apt-get install -yq libarchive-tools
- name: Run Tests
run: bundle exec rake test:unit