Commit e7801d97 authored by Wohlgemuth, Jason's avatar Wohlgemuth, Jason
Browse files

fix: Create CI test task

parent a80e5e07
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -44,7 +44,7 @@ test:
  inherit:
    default: true
    variables: true
  script: cargo test
  script: make test-ci

build-release:
  stage: build
+4 −0
Original line number Diff line number Diff line
@@ -13,6 +13,10 @@ test: clean lint
	@cargo test
	@cargo tarpaulin --out lcov --line --skip-clean

test-ci: clean lint
	@cargo build
	@cargo test

test-cross: clean
	@for target in $(TARGETS) ; do \
        cross test --target $$target; \