Skip to content

update a bunch of dependencies #109

update a bunch of dependencies

update a bunch of dependencies #109

Workflow file for this run

name: Continuous Integration
on:
push:
branches: [main]
tags: ["v*"]
pull_request:
branches: [main]
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
default: true
override: true
components: clippy, rustfmt
- name: Cancel previous runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- name: Check formatting
run: cargo fmt -- --check
- name: Clippy
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features -- -Dclippy::all
- name: Test
env:
SOL_RPC_ENDPOINT: ${{ secrets.SOL_RPC_ENDPOINT }}
run: cargo test -- --test-threads=1