vmware-vra 3.1.2 → 3.1.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,23 +0,0 @@
1
- ---
2
- name: Unit
3
-
4
- 'on':
5
- pull_request:
6
- push:
7
- branches:
8
- - main
9
-
10
- jobs:
11
- test:
12
- runs-on: ubuntu-latest
13
- strategy:
14
- matrix:
15
- ruby: ['2.6', '2.7', '3.0', '3.1']
16
- name: Unit test on Ruby ${{ matrix.ruby }}
17
- steps:
18
- - uses: actions/checkout@v2
19
- - uses: ruby/setup-ruby@v1
20
- with:
21
- ruby-version: ${{ matrix.ruby }}
22
- bundler-cache: true
23
- - run: bundle exec rake spec