Enable ruby 3.0 on CI and switch default to 3.0

This commit is contained in:
Benjamin Neff 2023-06-10 19:37:19 +02:00
parent d790e3dcba
commit ae813f0cf2
No known key found for this signature in database
GPG key ID: 971464C3F1A90194
3 changed files with 4 additions and 3 deletions

View file

@ -15,7 +15,8 @@ jobs:
fail-fast: false
matrix:
ruby:
- 2.7
- '2.7'
- '3.0'
db:
- mysql
- postgresql

View file

@ -1 +1 @@
2.7
3.0

View file

@ -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 \
apt-get update && \