Add data
to CCIPAdminProof
#839
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: Sui - Contracts | |
on: | |
push: | |
branches: | |
- develop | |
- main | |
pull_request: | |
merge_group: | |
jobs: | |
detect-changes: | |
runs-on: ubuntu-latest | |
outputs: | |
found: ${{ steps.c.outputs.found }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/changes | |
id: c | |
with: | |
folder: contracts | |
test: | |
name: Unit Tests | |
runs-on: ubuntu-latest | |
needs: [detect-changes] | |
if: needs.detect-changes.outputs.found == 'true' | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Setup Nix | |
uses: smartcontractkit/.github/actions/setup-nix@01d931b0455a754d12e7143cc54a5a3521a8f6f6 # [email protected] | |
- name: Run tests | |
run: | | |
nix develop --command task sui_test |