Add many1, many0_count and many1_count #4
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: Continuous Integration | |
on: | |
workflow_dispatch: | |
push: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
test: | |
name: Rust ${{ matrix.rust }} | |
runs-on: ubuntu-latest | |
outputs: | |
passed_rustfmt: ${{ steps.rustfmt.outputs.passed_rustfmt }} | |
passed_clippy: ${{ steps.clippy.outputs.passed_clippy }} | |
strategy: | |
fail-fast: false | |
matrix: | |
rust: [1.56.1, stable] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.rust }} | |
components: rustfmt, clippy | |
- id: rustfmt | |
name: Rust format | |
if: ${{ matrix.rust == 'stable' }} | |
run: | | |
cargo fmt --verbose --all -- --check | |
echo "passed_rustfmt=${{ matrix.rust }}" >> "$GITHUB_OUTPUT" | |
- id: clippy | |
name: Clippy | |
if: ${{ matrix.rust == '1.56.1' }} | |
run: | | |
cargo clippy --all --features "full_msrv" --all-targets -- -D warnings | |
echo "passed_clippy=${{ matrix.rust }}" >> "$GITHUB_OUTPUT" | |
- id: test | |
name: Compile and run tests | |
run: cargo test --verbose | |
code-checks: | |
name: Code checks | |
runs-on: ubuntu-latest | |
needs: test | |
steps: | |
- name: Rustfmt | |
run: | | |
echo "Rustfmt run on ${{ needs.test.outputs.passed_rustfmt }}" >> "$GITHUB_STEP_SUMMARY" | |
test "${{ needs.test.outputs.passed_rustfmt }}" = "stable" | |
- name: Clippy | |
run: | | |
echo "Clippy run on ${{ needs.test.outputs.passed_clippy }}" >> "$GITHUB_STEP_SUMMARY" | |
test "${{ needs.test.outputs.passed_clippy }}" = "1.56.1" |