Skip to content

Merge pull request #32 from jaredh159/refine-xrefs #10

Merge pull request #32 from jaredh159/refine-xrefs

Merge pull request #32 from jaredh159/refine-xrefs #10

Workflow file for this run

name: basic-ci
on:
push:
branches:
- master
pull_request:
jobs:
check:
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
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