Skip to content

Commit

Permalink
ci: Migrate to GitHub
Browse files Browse the repository at this point in the history
  • Loading branch information
ixti committed Nov 26, 2023
1 parent 0b6c16e commit b59ac73
Show file tree
Hide file tree
Showing 4 changed files with 74 additions and 48 deletions.
58 changes: 58 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: CI

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

env:
BUNDLE_WITHOUT: "development"
JRUBY_OPTS: "--dev --debug"

jobs:
test:
name: "rspec (ruby:${{ matrix.ruby }})"

runs-on: ubuntu-latest

services:
redis:
image: redis
ports:
- "6379:6379"
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
strategy:
fail-fast: false
matrix:
ruby: [ ruby-3.0, ruby-3.1, ruby-3.2 ]

steps:
- uses: actions/checkout@v4

- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true

- name: RSpec
run: scripts/ci-rspec

lint:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- uses: ruby/setup-ruby@v1
with:
ruby-version: ruby-3.2
bundler-cache: true

- name: Rubocop
run: bundle exec rubocop --format progress --color
36 changes: 0 additions & 36 deletions .gitlab-ci.yml

This file was deleted.

26 changes: 15 additions & 11 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- Migrate development to Github.


## [4.2.0] - 2023-11-23

Expand Down Expand Up @@ -103,14 +107,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Initial release that supports sidekiq >= 6.5.0


[unreleased]: https://gitlab.com/ixti/sidekiq-pauzer/-/compare/v4.2.0...main
[4.2.0]: https://gitlab.com/ixti/sidekiq-pauzer/-/compare/v4.1.0...v4.2.0
[4.1.0]: https://gitlab.com/ixti/sidekiq-pauzer/-/compare/v4.0.0...v4.1.0
[4.0.0]: https://gitlab.com/ixti/sidekiq-pauzer/-/compare/v3.1.0...v4.0.0
[3.1.0]: https://gitlab.com/ixti/sidekiq-pauzer/-/compare/v3.0.1...v3.1.0
[3.0.1]: https://gitlab.com/ixti/sidekiq-pauzer/-/compare/v3.0.0...v3.0.1
[3.0.0]: https://gitlab.com/ixti/sidekiq-pauzer/-/compare/v2.1.0...v3.0.0
[2.1.0]: https://gitlab.com/ixti/sidekiq-pauzer/-/compare/v2.0.0...v2.1.0
[2.0.0]: https://gitlab.com/ixti/sidekiq-pauzer/-/compare/v1.1.0...v2.0.0
[1.1.0]: https://gitlab.com/ixti/sidekiq-pauzer/-/compare/v1.0.0...v1.1.0
[1.0.0]: https://gitlab.com/ixti/sidekiq-pauzer/-/tree/v1.0.0
[unreleased]: https://github.com/ixti/sidekiq-pauzer/compare/v4.2.0...main
[4.2.0]: https://github.com/ixti/sidekiq-pauzer/compare/v4.1.0...v4.2.0
[4.1.0]: https://github.com/ixti/sidekiq-pauzer/compare/v4.0.0...v4.1.0
[4.0.0]: https://github.com/ixti/sidekiq-pauzer/compare/v3.1.0...v4.0.0
[3.1.0]: https://github.com/ixti/sidekiq-pauzer/compare/v3.0.1...v3.1.0
[3.0.1]: https://github.com/ixti/sidekiq-pauzer/compare/v3.0.0...v3.0.1
[3.0.0]: https://github.com/ixti/sidekiq-pauzer/compare/v2.1.0...v3.0.0
[2.1.0]: https://github.com/ixti/sidekiq-pauzer/compare/v2.0.0...v2.1.0
[2.0.0]: https://github.com/ixti/sidekiq-pauzer/compare/v1.1.0...v2.0.0
[1.1.0]: https://github.com/ixti/sidekiq-pauzer/compare/v1.0.0...v1.1.0
[1.0.0]: https://github.com/ixti/sidekiq-pauzer/tree/v1.0.0
2 changes: 1 addition & 1 deletion sidekiq-pauzer.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
spec.email = ["alexey@zapparov.com"]

spec.summary = "Enhance Sidekiq with queue pausing"
spec.homepage = "https://gitlab.com/ixti/sidekiq-pauzer"
spec.homepage = "https://github.com/ixti/sidekiq-pauzer"
spec.license = "MIT"

spec.metadata["homepage_uri"] = spec.homepage
Expand Down

0 comments on commit b59ac73

Please sign in to comment.