Skip to content

Commit

Permalink
Update ent workflow description for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
rustworthy committed Jan 3, 2024
1 parent 6639a5a commit 503edcb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/ent.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
name: Test Enterprise Faktory Features

# This is a CI workflow that runs the test against Enterprise Edition of Faktory.
# The binary (for macos only) is avalable for download for testing purposes with each Faktory release.
permissions:
contents: read
on:
push:
branches:
- main
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
name: enterprise
jobs:
test:
runs-on: macos-latest
Expand All @@ -32,7 +37,6 @@ jobs:
FAKTORY_URL: tcp://127.0.0.1:7419
FAKTORY_ENT: true
run: cargo test --locked --features ent --all-targets

doc:
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion src/proto/single/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ impl JobBuilder {
self
}

/// Set arbitrary key-value pairs to this job's custom data hash
/// Sets arbitrary key-value pairs to this job's custom data hash.
pub fn add_to_custom_data(&mut self, k: String, v: impl Into<serde_json::Value>) -> &mut Self {
let custom = self.custom.get_or_insert_with(HashMap::new);
custom.insert(k, v.into());
Expand Down

0 comments on commit 503edcb

Please sign in to comment.