Skip to content

release v0.16.1

release v0.16.1 #64

Workflow file for this run

name: basic-ci
on:
push:
branches:
- master
pull_request:
jobs:
check:
strategy:
matrix:
target: ['ubuntu-latest', 'windows-latest']
runs-on: ${{ matrix.target }}
steps:
- uses: actions/checkout@v4
- name: check
run: cargo check
- name: clippy
run: cargo clippy
- name: fmt
run: cargo fmt -- --check
- name: test
run: cargo test --all --no-fail-fast
- name: build
run: cargo build
- name: wasm
env:
RUSTFLAGS: -D warnings -A unused-imports
run: |
npm install -g [email protected]
cd dr-html-wasm && wasm-pack build --target web
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: -D warnings
concurrency:
group: ${{ github.ref }}-ci
cancel-in-progress: true