Merge pull request #97 from cjreed121/patch-1 #37
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
on: | |
push: | |
branches: | |
- main | |
- 'test-*' | |
paths: | |
- 'lib/**' | |
- 'spec/**' | |
pull_request: | |
branches: | |
- main | |
paths: | |
- 'lib/**' | |
- 'spec/**' | |
jobs: | |
unit-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby: [ '3.0', '3.1', '3.2' ] | |
name: Vagrant VMware Plugin unit tests on Ruby ${{ matrix.ruby }} | |
steps: | |
- name: Code Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{matrix.ruby}} | |
bundler-cache: true | |
- name: Run Tests | |
run: .ci/test.sh |