diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml index 0fa98d1276..cf54a2f0ac 100644 --- a/.github/workflows/ci-test.yml +++ b/.github/workflows/ci-test.yml @@ -2,7 +2,7 @@ name: ci-test on: push: - branches: [auto, canary, gha-test-*] + branches: [auto, canary, gha-test-*, main] pull_request: branches: [main, release-*, gha-test-*] @@ -121,7 +121,7 @@ jobs: runs-on: ubuntu-20.04-xl timeout-minutes: 60 needs: prepare - if: ${{ needs.prepare.outputs.test-rust == 'true' }} + # if: ${{ needs.prepare.outputs.test-rust == 'true' }} container: image: ghcr.io/diem/diem_build_environment:${{ needs.prepare.outputs.changes-target-branch }} volumes: @@ -137,7 +137,7 @@ jobs: key: ${{ needs.prepare.outputs.changes-target-branch }} - name: run unit tests run: | - $pre_command && cargo nextest --nextest-profile ci --jobs ${max_threads} --test-threads ${max_threads} --changed-since "origin/$TARGET_BRANCH" + $pre_command && cargo nextest --nextest-profile ci --jobs ${max_threads} --test-threads ${max_threads} #--changed-since "origin/$TARGET_BRANCH" env: TARGET_BRANCH: ${{ needs.prepare.outputs.changes-target-branch }} - name: run doctests