add one more ci #8
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
name: ci | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
bulloak-dir-quotes: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Check out the repo" | |
uses: "actions/checkout@v4" | |
- name: "Verify the Solidity tests using Bulloak with quotes" | |
uses: "smol-ninja/bulloak-verifier@main" | |
with: | |
tree-path: "test-workspace/**.tree" | |
- name: "Bulloak summary" | |
run: | | |
echo "✅ Passed" >> $GITHUB_STEP_SUMMARY | |
bulloak-dir-no-quotes: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Check out the repo" | |
uses: "actions/checkout@v4" | |
- name: "Verify the Solidity tests using Bulloak with quotes" | |
uses: "smol-ninja/bulloak-verifier@main" | |
with: | |
tree-path: test-workspace/**.tree | |
- name: "Bulloak summary" | |
run: | | |
echo "✅ Passed" >> $GITHUB_STEP_SUMMARY |