Skip to content

Commit

Permalink
bring back pr template, use cache properly in tests
Browse files Browse the repository at this point in the history
Signed-off-by: GitHub Actions Bot <>
  • Loading branch information
GitHub Actions Bot committed Oct 25, 2024
1 parent d205e28 commit 2378296
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
### Contributor's Note

<!---
Please mark the following items with an [x] if they apply to your PR.
Leave the [ ] open if they are not applicable, or if you have not completed the item.
--->

- [ ] I have added or updated documentation in `/docs` for any user-facing features or additions.
8 changes: 7 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# to run tests with arm64 see https://docs.docker.com/build/building/multi-platform/
export OGION_ARCH ?= amd64

ifdef CI
BUILD :=
else
BUILD := "--build"
endif

.PHONY: docker_setup_up
docker_setup_up:
docker compose -f docker/docker-compose.yml up -d gcs minio azurite
Expand All @@ -14,7 +20,7 @@ docker_setup_down:
.PHONY: unit_tests
unit_tests:
$(MAKE) docker_setup_up
docker compose -f docker/docker-compose.yml run --rm --build ogion_unit_tests
docker compose -f docker/docker-compose.yml run --rm $(BUILD) ogion_unit_tests

.PHONY: acceptance_tests
acceptance_tests:
Expand Down

0 comments on commit 2378296

Please sign in to comment.