Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,19 @@
name: split

on: [push]
on:
push:
pull_request:
schedule:
# Gemfile.lock is not committed, so new dependency releases can break the
# build without any change here. Build main weekly to catch that early.
- cron: "0 3 * * 1"

jobs:
test:
# Branches in this repository are already built on push, so only build
# pull requests opened from forks to avoid running the matrix twice.
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository

strategy:
matrix:
ruby: ["4.0", "3.4", "3.3", "3.2", "3.1"]
Expand Down
Loading