build(deps): bump webpki from 0.22.0 to 0.22.2 in /LocalRpi #118
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rust | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
ServerRpi: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install protobuf-compiler sqlite3 cmake libssl-dev mosquitto | |
- name: Build ServerRpi | |
run: cargo build --verbose --manifest-path ServerRpi/Cargo.toml | |
- name: Run tests for ServerRpi | |
run: cargo test --verbose --manifest-path ServerRpi/Cargo.toml | |
LocalRpi: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install protobuf-compiler cmake libbluetooth-dev bluez bluetooth libdbus-1-dev | |
- name: Build LocalRpi | |
run: cargo build --verbose --manifest-path LocalRpi/Cargo.toml | |
# - name: Run tests for LocalRpi | |
# run: cargo test --verbose --manifest-path LocalRpi/Cargo.toml |