Skip to content

feat: complete Rust API Checklist before publishing (#5) #12

feat: complete Rust API Checklist before publishing (#5)

feat: complete Rust API Checklist before publishing (#5) #12

Workflow file for this run

name: build
on:
pull_request:
push:
branches:
- main
- develop
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run clippy
run: cargo clippy --verbose -- -D warnings
- name: Run fmt
run: cargo fmt -- --check
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose