Skip to content

fix handling of very long sequences/choices (#20) #10

fix handling of very long sequences/choices (#20)

fix handling of very long sequences/choices (#20) #10

Workflow file for this run

on: [push]
name: Build, Lint and Test
jobs:
check:
name: Checking
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust Toolchain
uses: dtolnay/rust-toolchain@v1
with:
toolchain: 1.74
components: rustfmt, clippy
- name: cargo fmt
run: cargo fmt --all -- --check
- name: cargo clippy
# Add `-Dwarnings` when it's time.
run: cargo clippy --workspace --all-targets # -- -Dwarnings
- name: cargo test
run: cargo test --workspace
- name: cargo doc
run: cargo doc --workspace
coverage:
name: Test Coverage
needs: check
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install Rust Toolchain
uses: dtolnay/rust-toolchain@v1
with:
toolchain: 1.74
components: llvm-tools-preview, rustfmt
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Generate Code Coverage
run: cargo llvm-cov --workspace --lcov --output-path lcov.info
- name: Upload Results to Codecov
uses: codecov/codecov-action@v3
with:
file: lcov.info
flags: unittests
name: pest3-ci-coverage
# Failing to upload results will cause a CI error.
# So remember to use a token.
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true