refactor and optimize document parsing #131
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'CI' | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
env: | |
RUST_BACKTRACE: 1 | |
CARGO_TERM_COLOR: always | |
jobs: | |
ci-pass: | |
name: CI is green | |
runs-on: ubuntu-latest | |
needs: | |
- test-linux | |
- test-linux-aarch64 | |
- lint | |
steps: | |
- run: exit 0 | |
test-linux: | |
runs-on: [self-hosted, X64] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@nightly | |
with: | |
components: rustfmt | |
- uses: Swatinem/rust-cache@v1 | |
- name: Run tests | |
run: | | |
cargo check | |
cargo test --examples | |
cargo test | |
cargo install cargo-fuzz | |
cargo +nightly fuzz run fuzz_value -- -max_total_time=5m | |
test-linux-aarch64: | |
runs-on: [self-hosted, arm] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@nightly | |
with: | |
components: rustfmt | |
# - uses: Swatinem/rust-cache@v1 | |
- name: Run tests | |
run: | | |
cargo check | |
cargo test | |
cargo test --examples | |
lint: | |
runs-on: [self-hosted, X64] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@nightly | |
with: | |
components: rustfmt, clippy | |
# - uses: Swatinem/rust-cache@v1 | |
- uses: actions-rs/clippy-check@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Format check | |
run: | | |
cargo fmt -- --check |