Skip to content

Commit 3a9b8e8

Browse files
committed
Update CIs
1 parent df6323c commit 3a9b8e8

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

.github/workflows/gempush.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
build:
1010
name: Build + Publish
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-20.04
1212

1313
steps:
1414
- uses: actions/checkout@master
@@ -17,7 +17,7 @@ jobs:
1717
with:
1818
ruby-version: 2.6.x
1919
- name: Check release validity
20-
run: sh scripts/check-release.sh
20+
run: sh .github/scripts/check-release.sh
2121
- name: Publish to RubyGems
2222
run: |
2323
mkdir -p $HOME/.gem

.github/workflows/pre-release-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
ruby-version: ['2.6', '2.7']
16+
ruby-version: ['2.6', '2.7', '3.0']
1717
name: integration-tests-against-rc (ruby ${{ matrix.ruby-version }})
18-
runs-on: ubuntu-latest
18+
runs-on: ubuntu-20.04
1919
steps:
20-
- uses: actions/checkout@v1
20+
- uses: actions/checkout@v2
2121
- name: Set up Ruby ${{ matrix.ruby-version }}
2222
uses: ruby/setup-ruby@v1
2323
with:

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
ruby-version: ['2.6', '2.7']
20+
ruby-version: ['2.6', '2.7', '3.0']
2121
name: integration-tests (ruby ${{ matrix.ruby-version }})
22-
runs-on: ubuntu-latest
22+
runs-on: ubuntu-20.04
2323
steps:
2424
- uses: actions/checkout@v2
2525
- name: Set up Ruby ${{ matrix.ruby-version }}
@@ -35,7 +35,7 @@ jobs:
3535

3636
linter_check:
3737
name: linter-check
38-
runs-on: ubuntu-latest
38+
runs-on: ubuntu-20.04
3939
steps:
4040
- uses: actions/checkout@v2
4141
- name: Set up Ruby

bors.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
status = [
22
'integration-tests (ruby 2.6)',
33
'integration-tests (ruby 2.7)',
4+
'integration-tests (ruby 3.0)',
45
'linter-check'
56
]
67
# 1 hour timeout

0 commit comments

Comments
 (0)