build(deps): bump DeterminateSystems/nix-installer-action from 20 to 21 #1707
This file contains hidden or 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: Action | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Assert test | |
| uses: crytic/echidna-action@v2 | |
| with: | |
| files: "tests/solidity/basic/assert.sol" | |
| contract: "TestAssert" | |
| config: "tests/solidity/basic/assert.yaml" | |
| solc-version: 0.6.12 | |
| negate-exit-status: 1 | |
| - name: Multi-abi test | |
| uses: crytic/echidna-action@v2 | |
| with: | |
| files: "tests/solidity/basic/multi-abi.sol" | |
| contract: "B" | |
| multi-abi: true | |
| solc-version: 0.7.6 | |
| negate-exit-status: 1 |