From 8bbaabdbedda45f54b984877a3c0980f807d1fab Mon Sep 17 00:00:00 2001 From: stefan-mysten <135084671+stefan-mysten@users.noreply.github.com> Date: Fri, 18 Oct 2024 14:06:53 -0700 Subject: [PATCH] Cleanup --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 840aaf33d..612e130c1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -56,8 +56,11 @@ jobs: - name: Run tests that do not require local network run: make test + + - name: rustdoc + run: make doc - - name: Get releases JSON file + - name: Get Sui releases JSON file env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} shell: bash @@ -86,13 +89,10 @@ jobs: tar -zxvf $filename ./sui ./sui start --force-regenesis --with-faucet --with-indexer --with-graphql --pg-port 5432 --pg-db-name sui_indexer_v2 --epoch-duration-ms 10000 & - - name: Run tests that require local network + - name: Run tests that require local network (GraphQL Client and Tx Builder) run: | make test-with-localnet - - - name: rustdoc - run: make doc - + wasm: runs-on: ubuntu-latest