.github/workflows/ci.yml in azure_stt-0.2.0 vs .github/workflows/ci.yml in azure_stt-0.3.0
- old
+ new
@@ -8,16 +8,19 @@
jobs:
test:
runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ ruby-version: ['3.1', '3.0', '2.7', '2.6']
steps:
- - uses: actions/checkout@v2
- - name: Set up Ruby
+ - uses: actions/checkout@v3
+ - name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
- ruby-version: 2.6
+ ruby-version: ${{ matrix.ruby-version }}
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rake ci
env:
\ No newline at end of file