Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/canbench-post-comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,3 @@ jobs:
${{ matrix.benchmark.result }}
comment-tag: ${{ matrix.benchmark.title }}
pr-number: ${{ needs.download-results.outputs.pr_number }}

6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
rust: [ 1.84.0 ]
rust: [1.84.0]

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -40,7 +40,7 @@ jobs:
run: cargo test
env:
RUST_BACKTRACE: 1

- name: Build Fuzzers
run: |
cargo install cargo-fuzz
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
rm install-dfx.sh
dfx cache install
echo "$HOME/bin" >> $GITHUB_PATH

- name: Run test
run: |
bash examples/test.sh
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/conventional-commits.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ jobs:
env:
TITLE: ${{ github.event.pull_request.title }}
steps:
# Conventional commit patterns:
# verb: description
# verb!: description of breaking change
# verb(scope): Description of change to $scope
# verb(scope)!: Description of breaking change to $scope
# verb: feat, fix, ...
# scope: refers to the part of code being changed. E.g. " (accounts)" or " (accounts,canisters)"
# !: Indicates that the PR contains a breaking change.
# Conventional commit patterns:
# verb: description
# verb!: description of breaking change
# verb(scope): Description of change to $scope
# verb(scope)!: Description of breaking change to $scope
# verb: feat, fix, ...
# scope: refers to the part of code being changed. E.g. " (accounts)" or " (accounts,canisters)"
# !: Indicates that the PR contains a breaking change.
- run: |
if [[ "$TITLE" =~ ^(feat|fix|chore|build|ci|docs|style|refactor|perf|test)(\([-a-zA-Z0-9,]+\))?\!?\: ]]; then
echo pass
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ on:
# Only run this workflow when there are changes to the docs directory
pull_request:
paths:
- 'docs/**'
- "docs/**"
push:
paths:
- 'docs/**'
- "docs/**"

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand Down
Loading