mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-14 00:03:06 -05:00
Required tests that are skipped based on path matching need to have an inverse match with the same name that always succeeds to allow the tests to be marked as passing.
21 lines
433 B
YAML
21 lines
433 B
YAML
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
ignored-paths:
|
|
- 'builtin/**'
|
|
- 'cmd/**'
|
|
- 'internal/**'
|
|
- 'go.mod'
|
|
- 'go.sum'
|
|
|
|
jobs:
|
|
unit-tests-go:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
ruby: ['3.0', '3.1', '3.2']
|
|
name: Vagrant unit tests on Go (Ruby ${{ matrix.ruby }})
|
|
steps:
|
|
- name: Stubbed for skip
|
|
run: "echo 'No testing required in changeset'"
|