Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix unit tests and add CI jobs #467

Merged
merged 11 commits into from
May 6, 2024
Prev Previous commit
Next Next commit
Cancel previous jobs if a new commit is pushed
  • Loading branch information
bamx23 committed May 6, 2024
commit a73958621a001947282acf8feadc93037e736a73
4 changes: 4 additions & 0 deletions .github/workflows/cocoapods-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 3,10 @@ name: CocoaPods Lint
on:
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
lint:
runs-on: macos-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 3,10 @@ name: Run Unit Tests
on:
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
unit-tests:
runs-on: macos-latest
Expand Down
Loading