From 130cbcbed053bf1e4bf4797e03a8674481273430 Mon Sep 17 00:00:00 2001 From: Wes Date: Thu, 25 Apr 2024 08:14:35 -0700 Subject: [PATCH] chore: clean up justfile and tests (#70) --- .github/workflows/ci.yml | 3 --- Justfile | 8 ++++---- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 45102e8..a8cc58e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,9 +18,6 @@ jobs: with: cache: true - - name: Get web5 test vectors - run: git submodule update --init --recursive - - name: Install Dependencies run: just get diff --git a/Justfile b/Justfile index 0eddf64..ff5ed06 100644 --- a/Justfile +++ b/Justfile @@ -1,6 +1,3 @@ -clean: - cd packages/web5_flutter && flutter clean - get: #!/bin/bash echo "Getting dependencies for packages" @@ -11,7 +8,7 @@ get: fi \ done -test: +test: test-vectors #!/bin/bash for dir in packages/*; do \ if [ -d $dir ]; then \ @@ -27,3 +24,6 @@ analyze: (cd $dir && flutter analyze || dart analyze); \ fi \ done + +test-vectors: + @git submodule update --init --recursive