Skip to content

Commit

Permalink
Apply a cargo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
joshwlewis committed May 15, 2024
1 parent 5397f96 commit 943ecfa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
6 changes: 5 additions & 1 deletion buildpacks/go/tests/integration_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
}
}

Expand Down

0 comments on commit 943ecfa

Please sign in to comment.