.github/workflows/test.yaml in lrama-0.5.4 vs .github/workflows/test.yaml in lrama-0.5.5
- old
+ new
@@ -20,9 +20,23 @@
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle install
- run: bundle exec rspec
+ test-windows:
+ runs-on: windows-2022
+ strategy:
+ fail-fast: false
+ matrix:
+ ruby: ['head']
+ steps:
+ - uses: actions/checkout@v3
+ - uses: ruby/setup-ruby@v1
+ with:
+ ruby-version: ${{ matrix.ruby }}
+ bundler-cache: true
+ - run: bundle install
+ - run: bundle exec rspec
check-misc:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
# Copy from https://github.com/ruby/ruby/blob/089227e94823542acfdafa68541d330eee42ffea/.github/workflows/check_misc.yml#L27