Skip to content

Commit

Permalink
docs: polish wordings
Browse files Browse the repository at this point in the history
  • Loading branch information
smol-ninja committed Aug 13, 2024
1 parent 7dd6adb commit 5dfad70
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: "Check out the repo"
uses: "actions/checkout@v4"

- name: "Verify the Solidity tests using Bulloak with quotes"
- name: "Install and run Bulloak"
uses: "smol-ninja/bulloak-toolchain@main"
with:
tree-path: "test-workspace/**.tree"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Bulloak Toolchain

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.
This GitHub Action installs the [Bulloak](https://github.com/alexfertel/bulloak) toolchain and check that Solidity tests conform to BTT spec. Special thanks to [alexfertel](https://x.com/alexfertel) for his amazing work on Bulloak.

## Example workflow

Expand All @@ -19,7 +19,7 @@ jobs:
- name: "Check out the repo"
uses: "actions/checkout@v4"

- name: "Verify the Solidity tests using Bulloak"
- name: "Install and run Bulloak"
uses: "smol-ninja/bulloak-toolchain@v1"
with:
skip-modifiers: "false"
Expand Down
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: bulloak-toolchain
description: Verify that the Solidity tests match the structure of the Branching Trees.
description: Install Bulloak and check that Solidity tests conform to BTT spec
author: Sablier Labs Ltd

branding:
Expand Down Expand Up @@ -71,13 +71,13 @@ runs:
echo "bulloak-version=$(bulloak --version)" >> $GITHUB_OUTPUT
bulloak --version
- name: Verify that the Solidity tests match the structure of the Branching Trees
- name: Check that the Solidity tests conform to BTT spec
env:
SKIP_MODIFIERS: ${{ inputs.skip-modifiers }}
TREE_PATH: ${{ inputs.tree-path }}
shell: bash
run: |
echo "🌳 Verifying the Solidity tests using Bulloak"
echo "🌳 Checking the Solidity tests using Bulloak"
if [ "$SKIP_MODIFIERS" == "true" ]; then
bulloak check $TREE_PATH --skip-modifiers
else
Expand Down

0 comments on commit 5dfad70

Please sign in to comment.