Skip to content

chore(docs): add examples #158

chore(docs): add examples

chore(docs): add examples #158

Workflow file for this run

name: Test
on:
push:
branches:
- v2
- v1
pull_request:
branches:
- v2
- v1
paths-ignore:
- "webview-src/**"
- "webview-dist/**"
- "examples/**"
jobs:
build-and-test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-latest]
steps:
- uses: actions/checkout@v4
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- uses: Swatinem/rust-cache@v2
- name: Run tests
uses: actions-rs/cargo@v1
with:
command: test
args: --manifest-path=Cargo.toml --release