Skip to content

Create claude sandbox instructions #1321

Create claude sandbox instructions

Create claude sandbox instructions #1321

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
ci:
name: ${{ matrix.make_command }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
make_command: [lint-ci, test]
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
- name: Install dependencies, setup .env file, and setup database
run: make setup
- name: Run ${{ matrix.make_command }}
run: make ${{ matrix.make_command }}