Skip to content

Fix registerEnclaveKey to not allow empty signature when an AVR is dedicated to specific operator #100

Fix registerEnclaveKey to not allow empty signature when an AVR is dedicated to specific operator

Fix registerEnclaveKey to not allow empty signature when an AVR is dedicated to specific operator #100

Workflow file for this run

name: Test
on: [pull_request]
env:
SOLC_VERSION: 0.8.20
jobs:
contract-test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-node@v3
with:
node-version: '16'
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: npm install
run: npm install
- name: Build and Check sizes
run: forge build --sizes --skip test --use solc:${{ env.SOLC_VERSION }}
- name: Run tests
run: make SOLC_VERSION=${{ env.SOLC_VERSION }} test
- name: Lint
run: make lint