Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
rshewitt committed Sep 16, 2024
1 parent 698d062 commit a7f9ca3
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,21 @@
BATS_ARGS:=--recursive --pretty

build:
docker-compose build
docker compose build

clean:
docker-compose down -v --remove-orphans
docker compose down -v --remove-orphans

production:
docker build . -t ghcr.io/gsa/cf-backup-manager:latest

test:
docker-compose run --rm app test/bats/bin/bats $(BATS_ARGS) test/*.bats
docker compose run --rm app test/bats/bin/bats $(BATS_ARGS) test/*.bats

up:
docker-compose up -d
docker compose up -d

down:
docker compose down

.PHONY: test

0 comments on commit a7f9ca3

Please sign in to comment.