generated from evan-gray/multichain-template
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (30 loc) · 1006 Bytes
/
svm.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: svm
on:
pull_request:
jobs:
test:
name: Anchor Test
runs-on: ubuntu-latest
defaults:
run:
working-directory: svm
steps:
- uses: actions/checkout@v4
- name: Get solana version
id: solana
run: |
SOLANA_VERSION="$(awk '/solana_version =/ { print substr($3, 2, length($3)-2) }' Anchor.toml)"
echo "::set-output name=version::${SOLANA_VERSION}"
- name: Get anchor version
id: anchor
run: |
ANCHOR_VERSION="$(awk '/anchor_version =/ { print substr($3, 2, length($3)-2) }' Anchor.toml)"
echo "::set-output name=version::${ANCHOR_VERSION}"
- uses: evan-gray/anchor-test@06370fbca011ee48b176211b8f858789d6c33282
with:
anchor-version: "${{steps.anchor.outputs.version}}"
solana-cli-version: "${{steps.solana.outputs.version}}"
working-directory: "svm"
- run: cargo fmt --check --all
- run: cargo clippy
- run: cargo test