diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 840aaf33..612e130c 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