forked from toptal/chewy
-
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.
Merge pull request #2 from accredible/sync_master_with_upstream
Sync master with upstream
- Loading branch information
Showing
92 changed files
with
1,776 additions
and
309 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 +1 @@ | ||
.github/workflows @toptal/rogue-one | ||
* @toptal/sre |
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
version: 2 | ||
registries: | ||
toptal-github: | ||
type: "git" | ||
url: "https://github.com" | ||
username: "x-access-token" | ||
password: "${{secrets.DEPENDABOT_GITHUB_TOKEN}}" | ||
|
||
updates: | ||
- package-ecosystem: bundler | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
day: "wednesday" | ||
time: "07:00" | ||
pull-request-branch-name: | ||
separator: "-" | ||
labels: | ||
- "no-jira" | ||
- "ruby" | ||
- "dependencies" | ||
reviewers: | ||
- "toptal/sre" | ||
registries: | ||
- toptal-github | ||
insecure-external-code-execution: allow | ||
open-pull-requests-limit: 3 | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
day: "wednesday" | ||
time: "07:00" | ||
pull-request-branch-name: | ||
separator: "-" | ||
labels: | ||
- "no-jira" | ||
- "dependencies" | ||
- "gha" | ||
reviewers: | ||
- "toptal/sre" | ||
open-pull-requests-limit: 3 |
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,66 +1,63 @@ | ||
name: CI | ||
|
||
on: [push, pull_request] | ||
on: | ||
push: | ||
branches: [master] | ||
pull_request: | ||
types: [ | ||
synchronize, # PR was updated | ||
opened, # PR was open | ||
reopened # PR was reopened | ||
] | ||
|
||
jobs: | ||
ruby-2: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
ruby: [2.6, 2.7] | ||
gemfile: [rails.5.2.activerecord, rails.6.0.activerecord, rails.6.1.activerecord] | ||
name: ${{ matrix.ruby }}-${{ matrix.gemfile }} | ||
|
||
env: | ||
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: ${{ matrix.ruby }} | ||
bundler-cache: true | ||
- name: Run Elasticsearch | ||
uses: elastic/elastic-github-actions/elasticsearch@9de0f78f306e4ebc0838f057e6b754364685e759 | ||
with: | ||
stack-version: 7.10.1 | ||
port: 9250 | ||
- name: Tests | ||
run: bundle exec rspec | ||
|
||
ruby-3: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
ruby: [ '3.0', 3.1 ] | ||
gemfile: [ rails.6.1.activerecord, rails.7.0.activerecord ] | ||
ruby: [ '3.0', '3.1', '3.2', '3.3' ] | ||
gemfile: [rails.6.1.activerecord, rails.7.0.activerecord, rails.7.1.activerecord, rails.7.2.activerecord] | ||
exclude: | ||
- ruby: '3.0' | ||
gemfile: rails.7.2.activerecord | ||
name: ${{ matrix.ruby }}-${{ matrix.gemfile }} | ||
|
||
env: | ||
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile | ||
|
||
services: | ||
redis: | ||
# Docker Hub image | ||
image: redis | ||
ports: | ||
- '6379:6379' | ||
# Set health checks to wait until redis has started | ||
options: >- | ||
--health-cmd "redis-cli ping" | ||
--health-interval 10s | ||
--health-timeout 5s | ||
--health-retries 5 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v4 | ||
- uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: ${{ matrix.ruby }} | ||
bundler-cache: true | ||
- name: Run Elasticsearch | ||
uses: elastic/elastic-github-actions/elasticsearch@9de0f78f306e4ebc0838f057e6b754364685e759 | ||
with: | ||
stack-version: 7.10.1 | ||
port: 9250 | ||
- name: Start containers | ||
run: | | ||
docker compose up elasticsearch_test -d | ||
sleep 15 | ||
- name: Tests | ||
run: bundle exec rspec | ||
|
||
rubocop: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v4 | ||
- uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: 2.7 | ||
ruby-version: 3.0 | ||
bundler-cache: true | ||
- run: bundle exec rubocop --format simple |
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
Oops, something went wrong.