Skip to content

Update examples with async/sync split #16

Update examples with async/sync split

Update examples with async/sync split #16

Workflow file for this run

on: [push, pull_request]
name: Cargo Build & Test
jobs:
build_and_test:
name: Build and test
runs-on: ubuntu-latest
defaults:
run:
working-directory: uc8151-rs
strategy:
matrix:
toolchain:
- stable
steps:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose
- run: cargo test --verbose