bos-cli 0.4.1

Command line utility helps to develop widgets for near.social by allowing developers to use standard developer tools like their best code editor and standard tools for source code version control, and then deploy their widgets to SocialDB in one command.
name: Tests
on:
  push:
    branches: [ "main" ]
  pull_request:
    branches: [ "main" ]

env:
  CARGO_TERM_COLOR: always

jobs:
  codestyle:
    name: Tests
    runs-on: ubuntu-latest
    steps:
      - name: Checkout repository
        uses: actions/checkout@v4
        with: 
          submodules: recursive 
      - name: Install Rust
        uses: Swatinem/rust-cache@v2
      - name: Install libudev-dev
        run: |
          sudo apt-get update
          sudo apt-get install --assume-yes libudev-dev
      - name: Tests
        run: cargo test