Skip to content

fix(mrml-core): script elements should remain with open and close ele… #35

fix(mrml-core): script elements should remain with open and close ele…

fix(mrml-core): script elements should remain with open and close ele… #35

Workflow file for this run

on:
push:
paths:
- .github/workflows/mrml-cli-*
- packages/mrml-cli/**
- packages/mrml-core/**
- Cargo.lock
- Cargo.toml
defaults:
run:
working-directory: packages/mrml-cli
env:
RUSTFLAGS: "-Dwarnings"
jobs:
testing:
runs-on: ubuntu-latest
container: rust:1-bullseye
concurrency:
group: ${{ github.ref }}-mrml-cli-testing
cancel-in-progress: true
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
- uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-testing-${{ hashFiles('**/Cargo.lock') }}
- name: run tests
run: cargo test