We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a8dcea commit deecb40Copy full SHA for deecb40
.github/workflows/main.yml
@@ -281,6 +281,29 @@ jobs:
281
- name: Test
282
run: pnpm programs:test
283
284
+ test_ptoken:
285
+ name: Test p-token
286
+ runs-on: ubuntu-latest
287
+ needs: build_ptoken
288
+ steps:
289
+ - name: Git Checkout
290
+ uses: actions/checkout@v4
291
+
292
+ - name: Setup Environment
293
+ uses: ./.github/actions/setup
294
+ with:
295
+ cargo-cache-key: cargo-test-ptoken
296
+ solana: true
297
298
+ - name: Restore Program Builds
299
+ uses: actions/cache/restore@v4
300
301
+ path: ./**/*.so
302
+ key: ${{ runner.os }}-ptoken-build-${{ github.sha }}
303
304
+ - name: Test
305
+ run: pnpm p-token:test
306
307
conformance_ptoken:
308
name: Conformance Test for p-token
309
runs-on: ubuntu-latest
0 commit comments