Skip to content

Add more tests

Add more tests #39

Workflow file for this run

name: Run Linter Checks
on:
workflow_dispatch:
pull_request:
branches:
- main
paths-ignore:
- '**.md'
- 'docs/**'
- 'pygraphina/**'
push:
tags:
- 'v*'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Set Up Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: '1.86.0' # Pinned to project's MSRV
cache: true
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install -y clang curl pkg-config libssl-dev make
make install-deps
- name: Run Linters
run: make lint