Skip to content

Rails 7.1 にアップグレードした #11

Rails 7.1 にアップグレードした

Rails 7.1 にアップグレードした #11

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: PreCompile assets
run: ./docker_compose --profile test run --rm --build test rails assets:precompile
- name: Create database
run: ./docker_compose --profile test run --rm --build test rails db:create
- name: Run tests on docker compose
run: ./docker_compose --profile test run --rm --build test rails test:system