irc: Explain the benefits in the doc #161
This file contains hidden or 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: fast-validate | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| on: | |
| push: | |
| branches: [ master ] | |
| workflow_dispatch: | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build_and_test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: taiki-e/install-action@nextest | |
| - name: test | |
| run: make test | |
| - name: test-leak | |
| run: make test-leak | |
| - name: no_std build check | |
| run: cargo build --no-default-features --features full | |
| - name: various build | |
| run: cargo build --no-default-features -F various | |
| - name: various + seglist build | |
| run: cargo build --no-default-features -F various,seglist | |
| - name: btree build | |
| run: cargo build --no-default-features -F btree | |
| - name: Clippy with default | |
| run: cargo clippy -F full -- -D warnings |