Skip to content

Commit

Permalink
chore: rebase leftover config fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Bence Csati <[email protected]>
  • Loading branch information
csatib02 committed May 24, 2024
1 parent 9c3477e commit cfdc68f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,6 @@ jobs:
- name: Check commit messages
run: nix develop --impure .#ci -c pre-commit run --hook-stage manual

- name: Stop Engine
run: docker stop -t 300 $(docker ps --filter name="dagger-engine-*" -q)
if: always()

license-check:
name: License check
runs-on: ubuntu-latest
Expand Down
14 changes: 12 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,22 @@ sink-worker: ## Run sink-worker
.PHONY: test
test: ## Run tests
$(call print-target)
dagger call --source .:default test
$(DAGGER_BIN) call --source .:default test

.PHONY: test-e2e
test-e2e: ## Run end-to-end tests
$(call print-target)
$(DAGGER_BIN) call --source .:default test etoe

.PHONY: lint
lint: ## Run linters
$(call print-target)
dagger call --source .:default lint all
$(DAGGER_BIN) call --source .:default lint all

.PHONY: license-check
license-check: ## Run license check
$(LICENSEI_BIN) check
$(LICENSEI_BIN) header

.PHONY: fmt
fmt: ## Format code
Expand Down

0 comments on commit cfdc68f

Please sign in to comment.