Skip to content

Commit

Permalink
syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
jofas committed Apr 22, 2023
1 parent b42f7c5 commit 8197a9b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ jobs:
- name: Extract Cargo.toml Version
run: echo "VERSION=$(toml get -r Cargo.toml package.version)" >> "$GITHUB_ENV"
- name: Check Version
run: [ "${{ format('v{0}', env.CARGO_VERSION) }}" == "${{ github.ref_name }}" ]
run: |
[ "${{ format('v{0}', env.CARGO_VERSION) }}" == "${{ github.ref_name }}" ]
- name: Publish
run: cargo publish
env:
Expand Down

2 comments on commit 8197a9b

@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: 8197a9b Previous: d096d23 Ratio
map allocation 196515729 ns/iter (± 6260274) 175365644 ns/iter (± 98710) 1.12
set allocation 263627796 ns/iter (± 8039488) 214307980 ns/iter (± 48499) 1.23
vec_no_clone allocation 1308321685 ns/iter (± 31337305) 837450588 ns/iter (± 8514030) 1.56

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

@github-actions
Copy link

Choose a reason for hiding this comment

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

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 1.50.

Benchmark suite Current: 8197a9b Previous: d096d23 Ratio
vec_no_clone allocation 1308321685 ns/iter (± 31337305) 837450588 ns/iter (± 8514030) 1.56

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

Please sign in to comment.