-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into schneems/bump-fun-run
- Loading branch information
Showing
29 changed files
with
162 additions
and
121 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,7 +54,7 @@ jobs: | |
- name: Rust Cache | ||
uses: Swatinem/[email protected] | ||
- name: Install Pack CLI | ||
uses: buildpacks/github-actions/[email protected].0 | ||
uses: buildpacks/github-actions/[email protected].1 | ||
- name: Run integration tests | ||
# Runs only tests annotated with the `ignore` attribute (which in this repo, are the integration tests). | ||
run: cargo test --locked -- --ignored | ||
|
@@ -73,7 +73,7 @@ jobs: | |
- name: Rust Cache | ||
uses: Swatinem/[email protected] | ||
- name: Install Pack CLI | ||
uses: buildpacks/github-actions/[email protected].0 | ||
uses: buildpacks/github-actions/[email protected].1 | ||
- name: Pull builder image | ||
run: | | ||
docker pull "heroku/builder:22" | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,18 @@ | ||
[workspace] | ||
resolver = "2" | ||
members = ["buildpacks/ruby", "commons"] | ||
|
||
[workspace.package] | ||
edition = "2021" | ||
rust-version = "1.74" | ||
|
||
[workspace.lints.rust] | ||
unreachable_pub = "warn" | ||
unsafe_code = "warn" | ||
unused_crate_dependencies = "warn" | ||
|
||
[workspace.lints.clippy] | ||
panic_in_result_fn = "warn" | ||
pedantic = "warn" | ||
unwrap_used = "warn" | ||
module_name_repetitions = "allow" |
Oops, something went wrong.