From b1a3bcd7cefcd0aee8e10925eb8c27956057ff90 Mon Sep 17 00:00:00 2001 From: febo Date: Thu, 24 Jul 2025 01:09:24 +0100 Subject: [PATCH] Add p-token test to workflow --- .github/workflows/main.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b311dc5f..0d2b1019 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -281,6 +281,29 @@ jobs: - name: Test run: pnpm programs:test + test_ptoken: + name: Test p-token + runs-on: ubuntu-latest + needs: build_ptoken + steps: + - name: Git Checkout + uses: actions/checkout@v4 + + - name: Setup Environment + uses: ./.github/actions/setup + with: + cargo-cache-key: cargo-test-ptoken + solana: true + + - name: Restore Program Builds + uses: actions/cache/restore@v4 + with: + path: ./**/*.so + key: ${{ runner.os }}-ptoken-build-${{ github.sha }} + + - name: Test + run: pnpm p-token:test + conformance_ptoken: name: Conformance Test for p-token runs-on: ubuntu-latest