1
0
mirror of https://github.com/hashicorp/vagrant.git synced 2026-02-06 00:48:05 +01:00
Files
vagrant/.github/workflows/testing.yml
2020-08-10 13:05:41 -07:00

37 lines
714 B
YAML

on:
push:
branches:
- master
- 'test-*'
paths:
- 'bin/**'
- 'lib/**'
- 'plugins/**'
- 'test/**'
pull_request:
branches:
- master
paths:
- 'bin/**'
- 'lib/**'
- 'plugins/**'
- 'test/**'
jobs:
unit-tests:
runs-on: ubuntu-18.04
strategy:
matrix:
ruby: [ '2.5.x', '2.6.x', '2.7.x' ]
name: Vagrant unit tests on Ruby ${{ matrix.ruby }}
steps:
- name: Code Checkout
uses: actions/checkout@v1
- name: Setup Ruby
uses: actions/setup-ruby@v1
with:
ruby-version: ${{matrix.ruby}}
architecture: 'x64'
- name: Run Tests
run: .ci/test.sh