Enable ruby 3.0 on CI and switch default to 3.0
This commit is contained in:
parent
d790e3dcba
commit
ae813f0cf2
3 changed files with 4 additions and 3 deletions
3
.github/workflows/ci.yml
vendored
3
.github/workflows/ci.yml
vendored
|
|
@ -15,7 +15,8 @@ jobs:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
ruby:
|
ruby:
|
||||||
- 2.7
|
- '2.7'
|
||||||
|
- '3.0'
|
||||||
db:
|
db:
|
||||||
- mysql
|
- mysql
|
||||||
- postgresql
|
- postgresql
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
2.7
|
3.0
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
FROM docker.io/amd64/ruby:2.7-slim-bullseye
|
FROM docker.io/amd64/ruby:3.0-slim-bullseye
|
||||||
|
|
||||||
RUN DEBIAN_FRONTEND=noninteractive \
|
RUN DEBIAN_FRONTEND=noninteractive \
|
||||||
apt-get update && \
|
apt-get update && \
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue