Skip to content

links, multibyte lexing, ci #1

links, multibyte lexing, ci

links, multibyte lexing, ci #1

Workflow file for this run

name: basic-ci
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
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
run: cd dr-html-wasm && wasm-pack build --target web
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: -D warnings