Skip to content

Commit

Permalink
Merge pull request #419 from maxekman/fix/ci-actions
Browse files Browse the repository at this point in the history
fix(ci): update to up/download-artifact v4
  • Loading branch information
maxekman authored Jan 5, 2025
2 parents ac3a972 + b3c17d9 commit 877bcc0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
make test_cover
- name: Store coverage
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: coverage
path: unit.coverprofile
Expand All @@ -51,7 +51,7 @@ jobs:
make test_integration_cover
- name: Store coverage
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: coverage
path: integration.coverprofile
Expand All @@ -69,7 +69,7 @@ jobs:
go-version: 1.16

- name: Load coverage
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: coverage

Expand Down
16 changes: 8 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ test_loadtest:

.PHONY: test_all_docker
test_all_docker:
docker-compose up --build --force-recreate eventhorizon-test
docker compose up --build --force-recreate eventhorizon-test

.PHONY: merge_coverage
merge_coverage:
Expand All @@ -42,31 +42,31 @@ upload_coverage:

.PHONY: run
run:
docker-compose up -d mongodb gpubsub kafka redis nats
docker compose up -d mongodb gpubsub kafka redis nats

.PHONY: run_mongodb
run_mongodb:
docker-compose up -d mongodb
docker compose up -d mongodb

.PHONY: run_gpubsub
run_gpubsub:
docker-compose up -d gpubsub
docker compose up -d gpubsub

.PHONY: run_kafka
run_kafka:
docker-compose up -d kafka
docker compose up -d kafka

.PHONY: run_redis
run_redis:
docker-compose up -d redis
docker compose up -d redis

.PHONY: run_nats
run_nats:
docker-compose up -d nats
docker compose up -d nats

.PHONY: stop
stop:
docker-compose down
docker compose down

.PHONY: clean
clean:
Expand Down

0 comments on commit 877bcc0

Please sign in to comment.