Skip to content

Reverted changes to examples (by default) #35

Reverted changes to examples (by default)

Reverted changes to examples (by default) #35

Workflow file for this run

name: "Testing Suite"
on: [push, pull_request]
jobs:
unit-test:
permissions:
contents: write
strategy:
matrix:
platform: [macos-latest, ubuntu-20.04, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- run: git submodule update --init
- name: Initialize Rust Cache
uses: actions/cache@v2
with:
path: |
~/target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
- name: Install dependencies (Ubuntu only)
if: matrix.platform == 'ubuntu-20.04'
run: |
sudo apt-get update
sudo apt-get install -y libdbus-1-dev pkg-config
- name: Run test suite
working-directory: ./
run: cargo test