fix: strip Collapsed attribute from sanitized output #391
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: Test | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Run formatter | |
| run: cargo fmt --all -- --check | |
| - name: Run linter | |
| run: cargo clippy -- -Dwarnings | |
| - name: Run tests | |
| run: cargo test --verbose |