Provides scripts for building, storing, and releasing Vagrant via builders. Includes updates for testing and removal of deprecated CI configuration.
30 lines
608 B
YAML
30 lines
608 B
YAML
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- 'test-*'
|
|
paths-ignore:
|
|
- 'CHANGELOG.md'
|
|
- 'website/**'
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
unit-tests:
|
|
runs-on: ubuntu-18.04
|
|
strategy:
|
|
matrix:
|
|
ruby: [ '2.4.x', '2.5.x', '2.6.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
|