Skip to content

Added devcontainer

Added devcontainer #1

Workflow file for this run

name: "CI"
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
jobs:
specs:
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest]
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
ruby: ['3.2', '3.3']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bin/rails db:create db:migrate db:test:prepare spec