Skip to content

fix(expression): 修复表达式解析器错误的运算符优先级. #25

fix(expression): 修复表达式解析器错误的运算符优先级.

fix(expression): 修复表达式解析器错误的运算符优先级. #25

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
paths-ignore:
- "docs/"
pull_request:
branches: [ "main" ]
paths-ignore:
- "docs/"
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build (Release)
run: cargo build --release --verbose
- name: Test (Release)
run: cargo test -- -q
- name: Upload Release Artifact
uses: actions/upload-artifact@v4
with:
name: release-binary
path: target/release/
compression-level: 9