Skip to content
Closed
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: 10 additions & 2 deletions .github/workflows/ci-cd.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
name: Ruby CI/CD

on: [push, pull_request]
on:
push:
tags:
- '*'
pull_request:
types:
- opened
- synchronize
- reopened

permissions: {}
jobs:
Expand Down Expand Up @@ -42,7 +50,7 @@ jobs:
run: bundle exec rake

Integration_tests:
if: github.event_name == 'push'
if: github.repository == 'tinify/tinify-ruby'
runs-on: ${{ matrix.os }}
timeout-minutes: 10
needs: Unit_tests
Expand Down