We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 99c02e2 + b9b93bc commit 4197653Copy full SHA for 4197653
ci/.github/workflows/ci.yml
@@ -37,3 +37,27 @@ jobs:
37
- run: script/clone_all_rspec_repos
38
- run: bundle install --binstubs --standalone
39
- run: script/run_build
40
+
41
+ windows:
42
+ name: Ruby ${{ matrix.ruby }} (Windows)
43
+ runs-on: windows-latest
44
+ strategy:
45
+ matrix:
46
+ ruby:
47
+ - 2.7
48
+ - 2.6
49
+ - 2.5
50
+ - 2.4
51
+ - 2.3
52
+ - 2.2
53
+ - 2.1.9
54
+ fail-fast: false
55
+ steps:
56
+ - uses: actions/checkout@v2
57
+ - uses: ruby/setup-ruby@v1
58
+ with:
59
+ bundler: 2
60
+ ruby-version: ${{ matrix.ruby }}
61
+ bundler-cache: true
62
+ - run: cinst ansicon
63
+ - run: bundle exec rspec --backtrace
ci/appveyor.yml
0 commit comments