Skip to content
Merged
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/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down