Skip to content

Commit

Permalink
ci: rename workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
smol-ninja committed Aug 12, 2024
1 parent 00b54d1 commit cc50232
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: test-action
name: ci

on:
push:
branches:
- main

jobs:
test-action:
ci:
runs-on: "ubuntu-latest"
steps:
- name: "Check out the repo"
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ runs:
run: |
echo "🌳 Verifying the Solidity tests using Bulloak"
if [ "$SKIP_MODIFIERS" == "true" ]; then
echo "bulloak check $TREE_PATH --skip-modifiers" >> $GITHUB_OUTPUT
echo -e "bulloak check ${TREE_PATH} --skip-modifiers" >> $GITHUB_OUTPUT
bulloak check "$TREE_PATH" --skip-modifiers
else
echo "bulloak check $TREE_PATH" >> $GITHUB_OUTPUT
echo -e "bulloak check ${TREE_PATH}" >> $GITHUB_OUTPUT
bulloak check "$TREE_PATH"
fi

0 comments on commit cc50232

Please sign in to comment.