diff --git a/.github/actions/run_tests/action.yml b/.github/actions/run_tests/action.yml index cfb890a45a..af84a4f139 100644 --- a/.github/actions/run_tests/action.yml +++ b/.github/actions/run_tests/action.yml @@ -32,11 +32,3 @@ runs: RUSTFLAGS: -D warnings shell: bash -euxo pipefail {0} run: cargo nextest run --workspace --no-fail-fast - - - name: Build collab - shell: bash -euxo pipefail {0} - run: cargo build -p collab - - - name: Build other binaries - shell: bash -euxo pipefail {0} - run: cargo build --workspace --bins --all-features diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 037ac228a9..65475a41b9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,6 +48,12 @@ jobs: - name: Run tests uses: ./.github/actions/run_tests + - name: Build collab + run: cargo build -p collab + + - name: Build other binaries + run: cargo build --workspace --bins --all-features + bundle: name: Bundle app runs-on: diff --git a/.github/workflows/release_nightly.yml b/.github/workflows/release_nightly.yml index fc59137d93..99506db976 100644 --- a/.github/workflows/release_nightly.yml +++ b/.github/workflows/release_nightly.yml @@ -6,7 +6,7 @@ on: - cron: "0 1 * * *" push: tags: - - "nightly*" + - "nightly" env: CARGO_TERM_COLOR: always