Skip to content

Commit

Permalink
Merge pull request #2 from smol-ninja/refactor/rename-action
Browse files Browse the repository at this point in the history
refactor: rename verifier to toolchain
  • Loading branch information
smol-ninja authored Aug 13, 2024
2 parents 9ea71d1 + 94e95a2 commit 7dd6adb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: ci

on:
pull_request:
push:
branches:
- main
Expand All @@ -13,7 +14,7 @@ jobs:
uses: "actions/checkout@v4"

- name: "Verify the Solidity tests using Bulloak with quotes"
uses: "smol-ninja/bulloak-verifier@main"
uses: "smol-ninja/bulloak-toolchain@main"
with:
tree-path: "test-workspace/**.tree"

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Bulloak Verifier
# Bulloak Toolchain

This GitHub Action installs the [Bulloak](https://github.com/alexfertel/bulloak) verifier. Special thanks to [alexfertel](https://x.com/alexfertel) for his amazing work on Bulloak.
This GitHub Action installs the [Bulloak](https://github.com/alexfertel/bulloak) toolchain. Special thanks to [alexfertel](https://x.com/alexfertel) for his amazing work on Bulloak.

## Example workflow

Expand All @@ -20,7 +20,7 @@ jobs:
uses: "actions/checkout@v4"

- name: "Verify the Solidity tests using Bulloak"
uses: "smol-ninja/bulloak-verifier@v1"
uses: "smol-ninja/bulloak-toolchain@v1"
with:
skip-modifiers: "false"
tree-path: "test-workspace/**.tree"
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: bulloak-verifier
name: bulloak-toolchain
description: Verify that the Solidity tests match the structure of the Branching Trees.
author: Sablier Labs Ltd

Expand Down Expand Up @@ -82,4 +82,4 @@ runs:
bulloak check $TREE_PATH --skip-modifiers
else
bulloak check $TREE_PATH
fi
fi

0 comments on commit 7dd6adb

Please sign in to comment.