Skip to content

Commit

Permalink
Add Ruby 3.2 to tests workflow and docker-compose
Browse files Browse the repository at this point in the history
  • Loading branch information
diegotoral committed Jun 13, 2023
1 parent 47d8338 commit 4924606
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,10 @@ jobs:
- uses: actions/checkout@v3
- run: docker-compose build rspec-3.1
- run: docker-compose run rspec-3.1

build-3-2:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: docker-compose build rspec-3.2
- run: docker-compose run rspec-3.2
7 changes: 7 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,11 @@ services:
BASE_IMAGE: ruby:3.1
volumes:
- .:/app
rspec-3.2:
build:
context: .
args:
BASE_IMAGE: ruby:3.2
volumes:
- .:/app
entrypoint: bundle exec rspec

0 comments on commit 4924606

Please sign in to comment.