Update dependencies (#22) #37
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 "uid_gid=$(id -u):$(id -g)" >> $GITHUB_OUTPUT | |
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 update | |
sudo apt-get install -y libudev-dev libusb-1.0-0-dev | |
- name: show versions | |
run: | | |
rustup show | |
- name: rustfmt | |
run: | | |
cargo fmt --version | |
cargo fmt -- --check | |
- name: rust cache | |
uses: Swatinem/rust-cache@v2 | |
with: | |
# setup shared-key to share cache with other jobs | |
shared-key: ${{ github.run_id }}-${{ github.run_attempt }} | |
- name: clippy | |
run: | | |
cargo clippy --version | |
cargo clippy --all-features | |
tests: | |
runs-on: ubuntu-latest | |
container: | |
image: zondax/rust-ci:latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Rust Dependency Cache | |
uses: Swatinem/rust-cache@v2 | |
with: | |
# setup shared-key to share cache with other jobs | |
shared-key: ${{ github.run_id }}-${{ github.run_attempt }} | |
- run: | | |
sudo apt-get update | |
sudo apt-get install -y libudev-dev libusb-1.0.0-dev | |
- name: test --all-features | |
run: | | |
#with --lib we only test the unit tests | |
cargo test --lib --all-features |