chore(deps): bump tokio from 1.34.0 to 1.35.0 #229
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: ci | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
schedule: | |
- cron: '00 01 * * *' | |
jobs: | |
spell-check: | |
name: 'spell-check' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Check spelling | |
uses: crate-ci/typos@master | |
bash-lint: | |
name: '[bash] lint' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install bash dependencies ${{ matrix.os }} | |
run: | | |
curl -sS https://webi.sh/shfmt | sh | |
sudo apt-get install shellcheck coreutils -y | |
- name: Check format bash code ${{ matrix.os }} | |
run: make bash-check | |
- name: Check lint bash code ${{ matrix.os }} | |
run: make bash-lint | |
rustfmt-clippy: | |
name: '[rust] lint' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install Rust | |
uses: ructions/[email protected] | |
with: | |
toolchain: stable | |
override: true | |
profile: minimal | |
components: rustfmt | |
- name: Check formatting | |
run: | | |
cargo fmt --all -- --check | |
- name: Run clippy | |
uses: actions-rs/cargo@v1 | |
with: | |
command: clippy | |
args: -- -D warnings | |
rust-test: | |
name: '[rust] test ${{ matrix.target }}' | |
env: | |
CARGO: cargo | |
TARGET_FLAGS: "" | |
TARGET_DIR: ./target | |
RUST_BACKTRACE: 1 | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
build: [linux, macos, win-msvc, win-gnu, win32-msvc] | |
include: | |
- build: linux | |
os: ubuntu-latest | |
rust: stable | |
target: x86_64-unknown-linux-musl | |
- build: macos | |
os: macos-latest | |
rust: stable | |
target: x86_64-apple-darwin | |
- build: win-msvc | |
os: windows-latest | |
rust: stable | |
target: x86_64-pc-windows-msvc | |
- build: win-gnu | |
os: windows-latest | |
rust: nightly-x86_64-gnu | |
target: x86_64-pc-windows-gnu | |
- build: win32-msvc | |
os: windows-latest | |
rust: stable | |
target: i686-pc-windows-msvc | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install Rust | |
uses: ructions/[email protected] | |
with: | |
profile: minimal | |
toolchain: ${{ matrix.rust }} | |
override: true | |
components: rustfmt, clippy | |
- name: Use Cross | |
shell: bash | |
run: | | |
cargo install --bins --git https://github.com/rust-embedded/cross --tag v0.2.1 | |
echo "CARGO=cross" >> $GITHUB_ENV | |
echo "TARGET_FLAGS=--target ${{ matrix.target }}" >> $GITHUB_ENV | |
echo "TARGET_DIR=./target/${{ matrix.target }}" >> $GITHUB_ENV | |
- name: Show command used for Cargo | |
run: | | |
echo "cargo command is: ${{ env.CARGO }}" | |
echo "target flag is: ${{ env.TARGET_FLAGS }}" | |
echo "target dir is: ${{ env.TARGET_DIR }}" | |
- name: Run tests ${{ matrix.os }} | |
run: ${{ env.CARGO }} test --verbose --lib ${{ env.TARGET_FLAGS }} |