Skip to content

feat: add rated power and fix syn (#6) #8

feat: add rated power and fix syn (#6)

feat: add rated power and fix syn (#6) #8

Workflow file for this run

name: Test and lint
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Rust toolchain
uses: dtolnay/rust-toolchain@nightly
with:
components: clippy
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Lint
run: cargo clippy --all-targets --all-features -- -D warnings