Skip to content

Upgrade Graphina to version 0.4.0-alpha.5 #106

Upgrade Graphina to version 0.4.0-alpha.5

Upgrade Graphina to version 0.4.0-alpha.5 #106

Workflow file for this run

name: Run Rust Linters
on:
workflow_dispatch:
pull_request:
branches:
- main
paths-ignore:
- '**.md'
- 'docs/**'
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
rust-lints:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Install dependencies
run: |
sudo apt-get update && sudo apt-get upgrade -y
sudo apt-get install -y gcc curl pkg-config libssl-dev make
- name: Run linters
run: make rust-lint