Skip to content

Allow claude to create prs #1318

Allow claude to create prs

Allow claude to create prs #1318

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 }}