Skip to content

Commit

Permalink
wrapping strings in explicit quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
jofas committed Apr 22, 2023
1 parent fbe4fc5 commit 2ad3991
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Extract Cargo.toml Version
run: echo "CRATE_VERSION=$(toml get -r Cargo.toml package.version)" >> "$GITHUB_ENV"
- name: Check Version
run: test ${{ format('v{0}', env.CRATE_VERSION) }} == ${{ github.ref_name }}
run: test "${{ format('v{0}', env.CRATE_VERSION) }}" == "${{ github.ref_name }}"
- name: Publish
run: cargo publish
env:
Expand Down

1 comment on commit 2ad3991

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmark

Benchmark suite Current: 2ad3991 Previous: fbe4fc5 Ratio
map allocation 171638009 ns/iter (± 88338) 198802322 ns/iter (± 5534270) 0.86
set allocation 212735684 ns/iter (± 55214) 272798116 ns/iter (± 6291138) 0.78
vec_no_clone allocation 860069933 ns/iter (± 287736) 1360154841 ns/iter (± 45297135) 0.63

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.