Skip to content

Commit

Permalink
replace == with = in bash test
Browse files Browse the repository at this point in the history
  • Loading branch information
jofas committed Apr 22, 2023
1 parent 2ad3991 commit fc4d325
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 fc4d325

@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: fc4d325 Previous: 2ad3991 Ratio
map allocation 172620733 ns/iter (± 113960) 171638009 ns/iter (± 88338) 1.01
set allocation 210574676 ns/iter (± 944388) 212735684 ns/iter (± 55214) 0.99
vec_no_clone allocation 945149354 ns/iter (± 24767903) 860069933 ns/iter (± 287736) 1.10

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

Please sign in to comment.