Feat/eliminate use of bytes in function interfaces #278
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: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
permissions: | ||
actions: read | ||
checks: read | ||
contents: read | ||
repository-projects: read | ||
jobs: | ||
solidity-base: | ||
uses: smart-transaction/actions/.github/workflows/solidity-base.yml@main | ||
secrets: inherit | ||
with: | ||
disable-gas-snapshot: true # disabling gas snapshot until one is present | ||
solidity-coverage: | ||
uses: smart-transaction/actions/.github/workflows/solidity-coverage.yml@main | ||
Check failure on line 23 in .github/workflows/test.yml
|
||
secrets: inherit | ||
# Will run on a standard set of slither detectors (see more in actions repo) | ||
static-analysis-base: | ||
uses: smart-transaction/actions/.github/workflows/static-analysis-base.yml@main | ||
with: | ||
disable-divide-before-multiply: true | ||
disable-arbitrary-send-erc20: true |