build(deps): bump @grpc/grpc-js from 1.5.10 to 1.8.22 in /tests (#118) #87
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: "Main workflow" | |
on: | |
- push | |
jobs: | |
configure: | |
runs-on: ubuntu-latest | |
outputs: | |
uid_gid: ${{ steps.get-user.outputs.uid_gid }} | |
steps: | |
- id: get-user | |
run: echo "::set-output name=uid_gid::$(id -u):$(id -g)" | |
lint: | |
runs-on: ubuntu-latest | |
container: | |
image: zondax/rust-ci:latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- run: sudo apt-get install -y libudev-dev libusb-1.0-0-dev protobuf-compiler | |
- name: show versions | |
run: | | |
rustup show | |
- name: Install rustfmt | |
run: rustup component add rustfmt --toolchain nightly | |
- name: rustfmt | |
run: | | |
cargo +nightly fmt -- --check | |
- name: rust cache | |
uses: Swatinem/rust-cache@v1 | |
with: | |
# setup sharedKey to share cache with other jobs | |
sharedKey: ${{ github.run_id }}-${{ github.run_attempt }} | |
- name: clippy | |
run: | | |
cargo clippy --version | |
cargo clippy --all-features | |
build: | |
runs-on: ubuntu-latest | |
needs: lint | |
container: | |
image: zondax/rust-ci:latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- run: sudo apt-get install -y libudev-dev libusb-1.0-0-dev protobuf-compiler | |
- name: show versions | |
run: | | |
rustup show | |
- name: rust cache | |
uses: Swatinem/rust-cache@v1 | |
with: | |
# setup sharedKey to share cache with other jobs | |
sharedKey: ${{ github.run_id }}-${{ github.run_attempt }} | |
- name: build | |
run: cargo build | |
- name: build --release | |
run: cargo build --release | |
tests: | |
runs-on: ubuntu-latest | |
needs: build | |
container: | |
image: zondax/rust-ci:latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- run: sudo apt-get install -y libudev-dev libusb-1.0-0-dev protobuf-compiler | |
- name: rust cache | |
uses: Swatinem/rust-cache@v1 | |
with: | |
# setup sharedKey to share cache with other jobs | |
sharedKey: ${{ github.run_id }}-${{ github.run_attempt }} | |
- name: test --all-features | |
run: | | |
cargo test --all --all-features -- --test-threads 1 --skip integration |