Skip to content

Bump rails from 7.1.2 to 7.1.3.1 in /src #124

Bump rails from 7.1.2 to 7.1.3.1 in /src

Bump rails from 7.1.2 to 7.1.3.1 in /src #124

Workflow file for this run

name: PR Tests
on:
pull_request:
branches:
- master
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Start containers
run: docker-compose -f "docker-compose.yml" up -d
working-directory: src
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2.2'
bundler-cache: true
working-directory: src
- run: bundle exec rails db:create
working-directory: src
- run: bundle exec rails db:migrate
working-directory: src
- run: bundle exec bundle exec rake
working-directory: src