-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
switch ci from travis to actions #1691
Conversation
.github/workflows/test.yml
Outdated
- name: Run tests | ||
run: ./.actions.sh | ||
|
||
# TODO(zzak, rkh): Add slack notification. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@zzak Probably we need to set up an integration with slack but I don't have a permission to generate a token on slack. Could you work on this?
Note that we should also update a status badge after merging this PR. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it is worth going forward, even without the Slack notification in place, yet.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Check #sinatra-core for the slack notification info :)
Thanks for working on this!
@namusyaka I've added the slack notification, but I think we may want to tweak it and possibly only run on |
+1 on changing the default branch to main. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
require 'sinatra'
get '/frank-says' do
'Put this in your pipe & smoke it!'
end
@@ -5,14 +5,14 @@ echo "Running sinatra tests..." | |||
bundle exec rake | |||
|
|||
echo "Running sinatra-contrib tests..." | |||
export BUILDIR=$TRAVIS_BUILD_DIR/sinatra-contrib | |||
export BUILDIR=$GITHUB_WORKSPACE/sinatra-contrib |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
require 'sinatra'
get '/frank-says' do
'Put this in your pipe & smoke it!'
end
No description provided.