diff --git a/.github/workflows/publish_crate.yml b/.github/workflows/publish_crate.yml index 4d5d0772..1d104d72 100644 --- a/.github/workflows/publish_crate.yml +++ b/.github/workflows/publish_crate.yml @@ -29,6 +29,8 @@ jobs: toolchain: stable components: llvm-tools-preview - uses: Swatinem/rust-cache@v2 + - name: Install torrent edition tool (needed for testing) + run: cargo install imdl - name: Run Tests run: cargo test diff --git a/.github/workflows/publish_docker_image.yml b/.github/workflows/publish_docker_image.yml index f36bb714..5317a4f4 100644 --- a/.github/workflows/publish_docker_image.yml +++ b/.github/workflows/publish_docker_image.yml @@ -35,6 +35,8 @@ jobs: toolchain: stable components: llvm-tools-preview - uses: Swatinem/rust-cache@v2 + - name: Install torrent edition tool (needed for testing) + run: cargo install imdl - name: Run Tests run: cargo test diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 10c62fb8..87f43d34 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,6 +23,8 @@ jobs: run: sleep 15s shell: bash - uses: Swatinem/rust-cache@v1 + - name: Install torrent edition tool (needed for testing) + run: cargo install imdl - name: Run tests run: cargo test - name: Stop databases