diff --git a/.github/workflows/ci-deep.yml b/.github/workflows/ci-deep.yml index 030840b..dd2acc9 100644 --- a/.github/workflows/ci-deep.yml +++ b/.github/workflows/ci-deep.yml @@ -89,6 +89,11 @@ jobs: with: version: nightly + - name: Setup repo + uses: ./.github/actions/setup-repo + with: + registry-token: ${{ secrets.GH_REGISTRY_ACCESS_TOKEN }} + - name: Run Foundry tests run: yarn test:unit env: @@ -123,6 +128,11 @@ jobs: with: version: nightly + - name: Setup repo + uses: ./.github/actions/setup-repo + with: + registry-token: ${{ secrets.GH_REGISTRY_ACCESS_TOKEN }} + - name: Run Foundry tests run: yarn test:invariant env: @@ -159,6 +169,11 @@ jobs: with: version: nightly + - name: Setup repo + uses: ./.github/actions/setup-repo + with: + registry-token: ${{ secrets.GH_REGISTRY_ACCESS_TOKEN }} + - name: Run Foundry tests run: yarn test:fuzz env: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index baee9e4..77f7329 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,6 +73,11 @@ jobs: out key: "build-${{ github.sha }}" + - name: Setup repo + uses: ./.github/actions/setup-repo + with: + registry-token: ${{ secrets.GH_REGISTRY_ACCESS_TOKEN }} + - name: Install Foundry uses: foundry-rs/foundry-toolchain@v1 with: @@ -112,6 +117,11 @@ jobs: with: version: nightly + - name: Setup repo + uses: ./.github/actions/setup-repo + with: + registry-token: ${{ secrets.GH_REGISTRY_ACCESS_TOKEN }} + - name: Run Foundry tests run: yarn test:invariant env: @@ -143,6 +153,11 @@ jobs: out key: "build-${{ github.sha }}" + - name: Setup repo + uses: ./.github/actions/setup-repo + with: + registry-token: ${{ secrets.GH_REGISTRY_ACCESS_TOKEN }} + - name: Install Foundry uses: foundry-rs/foundry-toolchain@v1 with: @@ -173,6 +188,11 @@ jobs: - name: "Install Foundry" uses: "foundry-rs/foundry-toolchain@v1" + - name: Setup repo + uses: ./.github/actions/setup-repo + with: + registry-token: ${{ secrets.GH_REGISTRY_ACCESS_TOKEN }} + - name: "Install lcov" run: "sudo apt-get install lcov"