Fix read_ip lookup ordering to use guest tools first #44
Workflow file for this run
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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@a6e6f86333f0a2523ece813039b8b4be04560854 # v1.190.0 | |
with: | |
ruby-version: ${{matrix.ruby}} | |
bundler-cache: true | |
- name: Run Tests | |
run: .ci/test.sh |