-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 50de792
Showing
106 changed files
with
8,819 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: Lint Ruby | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- "gemfiles/*" | ||
- "Gemfile" | ||
- "**/*.rb" | ||
- "**/*.gemspec" | ||
- ".github/workflows/lint.yml" | ||
pull_request: | ||
paths: | ||
- "gemfiles/*" | ||
- "Gemfile" | ||
- "**/*.rb" | ||
- "**/*.gemspec" | ||
- ".github/workflows/lint.yml" | ||
|
||
jobs: | ||
rubocop: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: 3.3 | ||
bundler-cache: true | ||
- name: Lint Ruby code with RuboCop | ||
run: | | ||
bundle exec rubocop |
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,53 @@ | ||
name: Test | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
test: | ||
if: ${{ !contains(github.event.head_commit.message, '[ci skip]') }} | ||
runs-on: ubuntu-latest | ||
env: | ||
BUNDLE_JOBS: 4 | ||
BUNDLE_RETRY: 3 | ||
CI: true | ||
RAILS_VERSION: ${{ matrix.rails_version }} | ||
DATABASE_URL: postgresql://postgres:postgres@localhost:5432 | ||
services: | ||
redis: | ||
image: redis:7.0-alpine | ||
ports: ["6379:6379"] | ||
options: --health-cmd="redis-cli ping" --health-interval 1s --health-timeout 3s --health-retries 30 | ||
postgres: | ||
image: postgres:16 | ||
ports: ["5432:5432"] | ||
env: | ||
POSTGRES_PASSWORD: postgres | ||
options: >- | ||
--health-cmd pg_isready | ||
--health-interval 10s | ||
--health-timeout 5s | ||
--health-retries 5 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
rails_version: ["~> 7.0.0", "~> 7.0", "~> 8.0.0.beta1"] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: 3.3 | ||
bundler-cache: true | ||
- name: Create a PostgreSQL database | ||
run: | | ||
createdb -h localhost -U postgres activerecord_unittest | ||
- name: Run tests | ||
run: | | ||
bundle exec rake test | ||
- name: Run tests in isolation | ||
run: | | ||
bundle exec rake test:isolated |
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,44 @@ | ||
# Numerous always-ignore extensions | ||
*.diff | ||
*.err | ||
*.orig | ||
*.log | ||
*.rej | ||
*.swo | ||
*.swp | ||
*.vi | ||
*~ | ||
*.sass-cache | ||
*.iml | ||
.idea/ | ||
|
||
# Sublime | ||
*.sublime-project | ||
*.sublime-workspace | ||
|
||
# OS or Editor folders | ||
.DS_Store | ||
.cache | ||
.project | ||
.settings | ||
.tmproj | ||
Thumbs.db | ||
|
||
.bundle/ | ||
log/*.log | ||
*.gz | ||
pkg/ | ||
spec/dummy/db/*.sqlite3 | ||
spec/dummy/db/*.sqlite3-journal | ||
spec/dummy/tmp/ | ||
|
||
Gemfile.lock | ||
Gemfile.local | ||
.rspec | ||
*.gem | ||
tmp/ | ||
coverage/ | ||
|
||
/src | ||
/test/javascript/compiled/ | ||
/tmp/ |
Oops, something went wrong.