diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 278f6b1..37f70be 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,7 +41,7 @@ jobs: run: cargo test --locked integration-test: - name: Integration tests -- ${{ matrix.builder }} / ${{ matrix.arch }} + name: integration-tests: ${{ matrix.builder }} / ${{ matrix.arch }} runs-on: ${{ matrix.arch == 'arm64' && 'pub-hk-ubuntu-22.04-arm-large' || 'ubuntu-latest' }} strategy: matrix: diff --git a/buildpacks/go/tests/integration_test.rs b/buildpacks/go/tests/integration_test.rs index 84a067e..f78c466 100644 --- a/buildpacks/go/tests/integration_test.rs +++ b/buildpacks/go/tests/integration_test.rs @@ -26,7 +26,11 @@ impl IntegrationTestConfig { (_, _) => "x86_64-unknown-linux-musl".to_string(), }; let fixture = format!("tests/fixtures/{}", fixture.into()); - Self { target, builder, fixture } + Self { + target, + builder, + fixture, + } } }