Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 870 Bytes

README.md

File metadata and controls

36 lines (27 loc) · 870 Bytes

Setup Solana

An optimized action for installing the Solana Tool Suite.

If you use Anchor, you should also check out Setup Anchor.

Usage

Here's an example workflow:

name: example-workflow
on: [push]
jobs:
  run-solana:
    runs-on: ubuntu-20.04
    steps:
      - uses: actions/checkout@v3
      - uses: metadaoproject/[email protected]
      - run: solana block
        shell: bash

This will use the default versions of the Solana Tool Suite, 16.15.1. You can also configure this version like so:

steps:
  - uses: actions/checkout@v3
  - uses: metadaoproject/[email protected]
    with: 
      solana-cli-version: '1.10.32'

License

The scripts and documentation in this project are released under the MIT License.