Skip to content

metaDAOproject/setup-solana

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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.