Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
aviggiano committed Dec 12, 2023
1 parent d6461f2 commit 197b450
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,6 @@ jobs:
forge test -vvv
id: test

- uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.SIZE_BOT_SSH_KEY }}

- name: Report coverage
if: github.ref == 'refs/heads/main'
run: |
Expand All @@ -50,7 +46,10 @@ jobs:
./script/update_readme_coverage.sh
git add README.md
git commit -m "Update coverage [skip ci]" || true
git push origin main
git push https://${{ env.token }}@github.com/{{ github.event.repository.name }}.git
env:
token: ${{ secrets.SIZE_BOT_PAT }}


slither:
strategy:
Expand Down Expand Up @@ -85,10 +84,6 @@ jobs:
with:
submodules: recursive

- uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.SIZE_BOT_SSH_KEY }}

- name: Setup Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
Expand All @@ -110,7 +105,10 @@ jobs:
git config --local user.name "Size"
git add types/
git commit -m "Update types [skip ci]" || true
git push
git push https://${{ env.token }}@github.com/{{ github.event.repository.name }}.git
env:
token: ${{ secrets.SIZE_BOT_PAT }}


solhint:
strategy:
Expand Down

0 comments on commit 197b450

Please sign in to comment.