Skip to content
This repository has been archived by the owner on Dec 27, 2023. It is now read-only.

Clamp tx power between driver-specific values #105

Clamp tx power between driver-specific values

Clamp tx power between driver-specific values #105

Workflow file for this run

name: CI
env:
CI: true
on:
push:
# Run on the main branch
branches:
- main
# Releases are tags named 'v<version>', and must have the "major.minor.micro", for example: "0.1.0".
# Release candidates are tagged as `v<version>-rc<num>`, for example: "0.1.0-rc1".
tags:
- "v*"
# Also on PRs, just be careful not to publish anything
pull_request:
jobs:
ci:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo check
- name: Clippy
run: cargo clippy
- name: Test
run: cargo test