Skip to content

feat(sync): 增加线程安全函数概念. #96

feat(sync): 增加线程安全函数概念.

feat(sync): 增加线程安全函数概念. #96

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