Skip to content

refactor: share V8 isolate between plugins (#12) #55

refactor: share V8 isolate between plugins (#12)

refactor: share V8 isolate between plugins (#12) #55

Workflow file for this run

on:
push:
paths:
- "stuart-core/**"
- ".github/workflows/core.yml"
name: Core
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check
args: -p stuart_core
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: -p stuart_core