Skip to content

Commit

Permalink
chore(ci): Add validation workflow (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
dcvz committed Mar 5, 2024
1 parent 276ae40 commit b555a72
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
19 changes: 19 additions & 0 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: validate
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: blaze/macos-14
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- name: Build gem
run: |
gem build cocoapods-patch.gemspec
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,23 @@

# cocoapods-patch

cocoapods-patch is a Cocoapods plugin that solves the problem of forking and maintaining a separate version of a Pod when only a small (often a one-liner), long-lived change in the original Pod is needed.

The idea behind the plugin is that patches should live inside the repo (in the `patches` directory) and be distributed together with the rest of your source code. This way, you can more easily code review and test the changes to a Pod and keep it synced across your team.

<div align="left" valign="middle">
<a href="https://runblaze.dev">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://www.runblaze.dev/logo_dark.png">
<img align="right" src="https://www.runblaze.dev/logo_light.png" height="102px"/>
</picture>
</a>

<br style="display: none;"/>

_[Blaze](https://runblaze.dev) sponsors cocoapods-patch by providing super fast Apple Silicon based macOS Github Action Runners. Use the discount code `LAUNCH50` at checkout to get 50% off your first year._

</div>

## Installation

First, install the plugin
Expand Down

0 comments on commit b555a72

Please sign in to comment.