Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,31 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Format Clarity contracts
run: clarinet format --in-place

- name: Check Clarity contracts check
run: clarinet check --use-on-disk-deployment-plan

fuzz-tests:
runs-on: ubuntu-latest
container: ghcr.io/stx-labs/clarinet:latest
steps:
- uses: actions/checkout@v4

- name: Install Node.js in container
run: |
apt-get update && apt-get install -y curl
curl -fsSL https://deb.nodesource.com/setup_20.x | bash -
apt-get install -y nodejs

- name: Install dependencies
run: npm ci

- name: Run fuzz tests
run: npx rv . roxy test




tests:
Expand Down
Loading