Fix MessageId
and ChannelId
deserialization if type marker is signed
#388
Workflow file for this run
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
on: | |
pull_request: | |
branches: | |
- master | |
name: Benchmarks | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
benchmarks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
shared-key: "build-debug" | |
save-if: "false" | |
- name: Benchmark | |
run: | | |
bash ./scripts/ci-run-benchmarks.sh . ${{ github.job }} | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: canbench_result_${{github.job}} | |
path: /tmp/canbench_result_${{ github.job }} | |
- name: Save PR number | |
run: | | |
echo ${{ github.event.number }} > /tmp/pr_number | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: pr_number | |
path: /tmp/pr_number | |
- name: Pass or fail | |
run: | | |
bash ./scripts/ci-post-run-benchmarks.sh |