Skip to content

Merge pull request #44 from arindas/develop #42

Merge pull request #44 from arindas/develop

Merge pull request #44 from arindas/develop #42

Workflow file for this run

name: rust-ci
on:
push:
branches: ["main"]
paths:
- "src/**"
pull_request:
branches: ["main"]
paths:
- "src/**"
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run tests
run: cargo test --verbose
clippy-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Clippy Check
run: cargo clippy --all-features