We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd34312 commit 33cfa95Copy full SHA for 33cfa95
.github/workflows/ci.yml
@@ -27,8 +27,8 @@ jobs:
27
matrix:
28
os:
29
- ubuntu-20.04
30
- - ubuntu-18.04
31
- - macos-10.15
+ - ubuntu-latest
+ - macos-latest
32
- windows-latest
33
ruby: ${{ fromJson(needs.ruby-versions.outputs.versions) }}
34
include:
@@ -56,4 +56,4 @@ jobs:
56
- run: rake build
57
58
- run: gem install pkg/*.gem
59
- if: ${{ ( matrix.ruby != 'debug' && matrix.os == 'linux-latest' ) || ( matrix.ruby != 'debug' && matrix.os == 'macos-latest' ) }}
+ if: ${{ matrix.ruby != 'debug' && ( matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' ) }}
0 commit comments