fix(deps): bump serde from 1.0.215 to 1.0.216 #964
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: | |
types: [labeled, opened, synchronize, reopened] | |
name: benchmark | |
jobs: | |
benchmark: | |
name: "Run criterion benchmark" | |
if: contains(github.event.pull_request.labels.*.name, 'benchmark') | |
permissions: | |
contents: read | |
pull-requests: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Create k8s Kind Cluster | |
uses: helm/[email protected] | |
with: | |
cluster_name: "kind" | |
- name: "Apply RBAC resources" | |
run: kubectl apply -k rbac | |
- uses: boa-dev/criterion-compare-action@v3 | |
with: | |
# Needed. The name of the branch to compare with. This default uses the branch which is being pulled against | |
branchName: ${{ github.base_ref }} | |
# Optional. Default is `${{ github.token }}`. | |
token: ${{ secrets.GITHUB_TOKEN }} |