-
Notifications
You must be signed in to change notification settings - Fork 41
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
1 parent
2450b5e
commit 5774894
Showing
5 changed files
with
87 additions
and
45 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
|
||
# Maybe change this if you are not running on a Mac | ||
CONTAINER_ARCH = linux/amd64 | ||
|
||
.PHONY: help run-all-ci test-postgres generate-docs | ||
|
||
help: | ||
$(info ${HELP_MESSAGE}) | ||
@exit 0 | ||
|
||
|
||
# Run GitHub Actions CI jobs locally | ||
run-all-ci: test-postgres generate-docs | ||
@echo "All CI steps completed." | ||
|
||
test-postgres: | ||
@echo "Running test-postgres job..." | ||
act -j test-postgres --container-architecture $(CONTAINER_ARCH) | ||
|
||
generate-docs: | ||
@echo "Running generate-docs job..." | ||
act -j generate-docs --container-architecture $(CONTAINER_ARCH) | ||
|
||
|
||
define HELP_MESSAGE | ||
Usage: $ make [TARGETS] | ||
|
||
TARGETS | ||
help Shows this help message | ||
run-all-ci Runs all CI steps | ||
test-postgres Runs test-postgres job | ||
generate-docs Generates documentation | ||
|
||
endef |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,5 @@ target/ | |
dbt_modules/ | ||
dbt_packages/ | ||
logs/ | ||
.user.yml | ||
package-lock.yml |