Skip to content

Commit

Permalink
Merge branch 'main' into fix/rbac-indexing
Browse files Browse the repository at this point in the history
  • Loading branch information
stanislav-tkach authored Feb 8, 2025
2 parents 222d2d7 + 8676e4c commit 70124e5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions catalyst_voices/Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,6 @@ code-generator:
# restore current working directory to the root of the project
WORKDIR /frontend

# Runs static analysis on the code.
check-static-analysis:
FROM +code-generator
DO flutter-ci+ANALYZE

# Runs code formatting checks.
check-code-formatting:
FROM +builder
Expand All @@ -102,6 +97,11 @@ test-unit:
FROM +code-generator
DO flutter-ci+UNIT_TESTS

# Runs static analysis on the code.
build-static-analysis:
FROM +code-generator
DO flutter-ci+ANALYZE

# Build web version of Catalyst Voices
build-web:
FROM +code-generator
Expand Down
2 changes: 1 addition & 1 deletion catalyst_voices/justfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ bootstrap: generate-code

# Runs all static code checks
check-code:
earthly +check-static-analysis
earthly +build-static-analysis
earthly +check-code-formatting
earthly +check-license

Expand Down

0 comments on commit 70124e5

Please sign in to comment.