Skip to content

Implement required interface for the rlx #9

Implement required interface for the rlx

Implement required interface for the rlx #9

Workflow file for this run

name: Build and Lint
on: [push, pull_request]
# Make sure CI fails on all warnings, including Clippy lints
env:
RUSTFLAGS: "-D warnings"
jobs:
clippy_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Clippy
run: cargo clippy --all-targets --all-features
- name: Build
run: cargo build --all-targets