Skip to content

Commit 04655db

Browse files
moved apps to apps/ - less clutter on main dir
1 parent d6808ff commit 04655db

File tree

529 files changed

+39
-39
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

529 files changed

+39
-39
lines changed

.github/workflows/rails_application-coverage.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ on:
88
branches:
99
- master
1010
paths:
11-
- "rails_application/Gemfile.lock"
11+
- "apps/rails_application/Gemfile.lock"
1212
- ".github/workflows/rails_application-coverage.yml"
1313
pull_request:
1414
paths:
15-
- "rails_application/Gemfile.lock"
15+
- "apps/rails_application/Gemfile.lock"
1616
- ".github/workflows/rails_application-coverage.yml"
1717
schedule:
1818
- cron: '0 17 * * *'
@@ -34,9 +34,9 @@ jobs:
3434
with:
3535
ruby-version: ruby-3.4.6
3636
bundler-cache: true
37-
working-directory: rails_application
37+
working-directory: apps/rails_application
3838
- name: Run tests
39-
run: make -C rails_application test
39+
run: make -C apps/rails_application test
4040
env:
4141
DATABASE_URL: "postgres://postgres:secret@localhost:5432/cqrs-es-sample-with-res_test"
4242
RAILS_ENV: test
@@ -58,9 +58,9 @@ jobs:
5858
with:
5959
ruby-version: ruby-3.4.6
6060
bundler-cache: true
61-
working-directory: rails_application
61+
working-directory: apps/rails_application
6262
- name: Run full mutation testing
63-
run: make -C rails_application mutate
63+
run: make -C apps/rails_application mutate
6464
env:
6565
DATABASE_URL: "postgres://postgres:secret@localhost:5432/cqrs-es-sample-with-res_test"
6666
RAILS_ENV: test

.github/workflows/rails_application-mutate.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jobs:
2323
with:
2424
ruby-version: ruby-3.4.6
2525
bundler-cache: true
26-
working-directory: rails_application
26+
working-directory: apps/rails_application
2727
- name: Run tests
28-
run: make -C rails_application test
28+
run: make -C apps/rails_application test
2929
env:
3030
DATABASE_URL: "postgres://postgres:secret@localhost:5432/cqrs-es-sample-with-res_test"
3131
RAILS_ENV: test
@@ -49,9 +49,9 @@ jobs:
4949
with:
5050
ruby-version: ruby-3.4.6
5151
bundler-cache: true
52-
working-directory: rails_application
52+
working-directory: apps/rails_application
5353
- name: Run incremental mutation testing
54-
run: make -C rails_application mutate-changes
54+
run: make -C apps/rails_application mutate-changes
5555
env:
5656
DATABASE_URL: "postgres://postgres:secret@localhost:5432/cqrs-es-sample-with-res_test"
5757
RAILS_ENV: test

.github/workflows/rails_application.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
2121
with:
2222
ruby-version: ruby-3.4.6
2323
bundler-cache: true
24-
working-directory: rails_application
24+
working-directory: apps/rails_application
2525
- name: Run tests
26-
run: make -C rails_application test
26+
run: make -C apps/rails_application test
2727
env:
2828
DATABASE_URL: "postgres://postgres:secret@localhost:5432/cqrs-es-sample-with-res_test"
2929
RAILS_ENV: test
@@ -44,9 +44,9 @@ jobs:
4444
with:
4545
ruby-version: ruby-3.4.6
4646
bundler-cache: true
47-
working-directory: rails_application
47+
working-directory: apps/rails_application
4848
- name: Run mutant test runner
49-
run: make -C rails_application test-mutant-runner
49+
run: make -C apps/rails_application test-mutant-runner
5050
env:
5151
DATABASE_URL: "postgres://postgres:secret@localhost:5432/cqrs-es-sample-with-res_test"
5252
RAILS_ENV: test
@@ -55,7 +55,7 @@ jobs:
5555
strategy:
5656
fail-fast: false
5757
env:
58-
WORKING_DIRECTORY: rails_application
58+
WORKING_DIRECTORY: apps/rails_application
5959
needs: [ test ]
6060
if: ${{ github.ref == 'refs/heads/master' }}
6161
steps:

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ $(addprefix mutate-, $(CONTEXTS)):
1010
@make -C ecommerce/$(subst mutate-,,$@) mutate
1111

1212
install-rails:
13-
@make -C rails_application install
13+
@make -C apps/rails_application install
1414

1515
test-rails:
16-
@make -C rails_application test
16+
@make -C apps/rails_application test
1717

1818
mutate-rails:
19-
@make -C rails_application mutate
19+
@make -C apps/rails_application mutate
2020

2121
install-infra:
2222
@make -C infra install
@@ -28,7 +28,7 @@ mutate-infra:
2828
@make -C infra mutate
2929

3030
dev:
31-
@make -C rails_application dev
31+
@make -C apps/rails_application dev
3232

3333
install: install-infra install-rails $(addprefix install-, $(CONTEXTS)) ## Install all dependencies
3434

File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ group :test do
4444
gem "selenium-webdriver"
4545
end
4646
gem "rails_event_store", "~> 2.15"
47-
gem "infra", path: "../infra"
47+
gem "infra", path: "../../infra"
File renamed without changes.

0 commit comments

Comments
 (0)