-
Notifications
You must be signed in to change notification settings - Fork 0
SHREK-362: switch from semaphore to gha #13
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| name: Checks | ||
|
|
||
| on: | ||
| push: | ||
| branches: [master] | ||
| pull_request: | ||
|
|
||
| jobs: | ||
| checks: | ||
| runs-on: ubuntu-latest | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @seanvm @joseasouza I'm using one of GitHub's runners because we can't use our own self-hosted runners in public repositories due to security concerns. No a problem though, ubuntu-latest is free. Speaking of which, do we need this repo to be public, and what would the consequences of making it private be?
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think it needs to public so bundle can pull the gem directly from the repo? |
||
| strategy: | ||
| matrix: | ||
| command: [rake, rubocop] | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: ruby/setup-ruby@v1 | ||
| with: | ||
| ruby-version: '2.6' | ||
|
RyanNielson marked this conversation as resolved.
|
||
| bundler-cache: true | ||
| - run: bundle exec ${{ matrix.command }} | ||
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.