Skip to content

CCIP-021: Extend Direct Execution Sunset Period #256

CCIP-021: Extend Direct Execution Sunset Period

CCIP-021: Extend Direct Execution Sunset Period #256

Workflow file for this run

# GitHub action to run Clarinet tests against the contracts
# and fail if code is invalid or a test fails.
name: Test Contracts
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
# allow running manually
workflow_dispatch:
env:
CLARINET_DISABLE_HINTS: 1
jobs:
test-contracts:
runs-on: ubuntu-latest
steps:
- name: "Checkout code"
uses: actions/checkout@v3
- name: "Check contract syntax"
uses: docker://hirosystems/clarinet:latest
with:
args: check
- name: "Run all contract tests"
uses: docker://hirosystems/clarinet:latest
with:
args: test --coverage
- name: "Upload code coverage"
uses: codecov/codecov-action@v3
with:
files: ./coverage.lcov