Skip to content

Commit

Permalink
add just file targets for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
femnad committed Aug 25, 2024
1 parent 41679b2 commit 418fde0
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Justfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
default:
@just --choose

build-ubuntu:
podman image build -t fup:ubuntu -f Dockerfile.ubuntu .

run-ubuntu: build-ubuntu
podman container run --name ubuntu --rm -d fup:ubuntu

test:
go test ./... -tags=unit

test-integration:
go test ./... -tags=integration

0 comments on commit 418fde0

Please sign in to comment.