Skip to content

feat: add getter to retrieve Process #6

feat: add getter to retrieve Process

feat: add getter to retrieve Process #6

Workflow file for this run

name: build
on:
push:
branches: ['main']
pull_request:
branches: ['main']
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo fmt --check
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo clippy --all-targets --all-features --workspace -- -D warnings