docs: Add a rumdl config and format our markdown files (#345) #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: Mutation tests (full) | |
| on: | |
| push: | |
| branches: | |
| - main | |
| permissions: {} | |
| jobs: | |
| cargo-mutants: | |
| runs-on: ubuntu-latest | |
| name: cargo-mutants (full) | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - name: Install rust | |
| uses: dtolnay/rust-toolchain@e97e2d8cc328f1b50210efc529dca0028893a2d9 | |
| with: | |
| toolchain: stable | |
| - uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 | |
| - name: Install cargo-mutants | |
| uses: taiki-e/install-action@213ccc1a076163c093f914550b94feb90fab916d | |
| with: | |
| tool: cargo-mutants | |
| - name: Run mutant tests | |
| run: cargo mutants -vV --no-shuffle --in-place | |
| - name: Archive mutants.out | |
| uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a | |
| if: always() | |
| with: | |
| name: mutants-full.out | |
| path: mutants.out |