feat(lazer): add client to solana example program #18
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Lazer Publisher Test" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
lazer-publisher-test: | |
name: Lazer Publisher Test | |
runs-on: ubuntu-22.04 | |
defaults: | |
run: | |
working-directory: lazer/publisher | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
toolchain: 1.81.0 | |
components: clippy, rustfmt | |
- name: install extra tools | |
run: | | |
cargo install --locked [email protected] | |
sudo apt-get install -y protobuf-compiler | |
- name: check Cargo.toml formatting | |
run: find . -name Cargo.toml -exec taplo fmt --check --diff {} \; | |
- name: check Rust formatting | |
run: cargo +1.81.0 fmt --all | |
- name: check Rust clippy | |
run: cargo +1.81.0 clippy --all-targets -- --deny warnings | |
- name: test | |
run: cargo test |