-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Change author to team. - Automate CI release. - Update various dependencies. - More specs. - README fixes.
- Loading branch information
1 parent
cc3f4c7
commit 3e812c8
Showing
7 changed files
with
148 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Test | ||
name: CI | ||
|
||
on: | ||
push: | ||
|
@@ -24,7 +24,7 @@ jobs: | |
|
||
strategy: | ||
matrix: | ||
ruby: [2.7, 3.0, 3.1, 3.2] | ||
ruby: [3.0, 3.1, 3.2] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
@@ -34,3 +34,20 @@ jobs: | |
bundler-cache: true | ||
- name: Run rspec | ||
run: bundle exec rspec | ||
|
||
release: | ||
runs-on: ubuntu-latest | ||
|
||
environment: release | ||
|
||
if: github.event_name == 'push' && github.ref == 'refs/heads/master' | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Release Gem | ||
uses: skirushkin/publish-rubygems-action@main | ||
env: | ||
RUBYGEMS_API_KEY: ${{secrets.RUBYGEMS_API_KEY}} | ||
GIT_EMAIL: [email protected] | ||
GIT_NAME: Team Umbrellio |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,6 @@ | |
|
||
module Yabeda | ||
module RabbitMessaging | ||
VERSION = "0.0.1" | ||
VERSION = "0.0.2" | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.