Use simple names instead of fancy generated ones as to improve the UX #243
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: Build and Test | |
| on: | |
| push: | |
| branches: ["main"] | |
| paths-ignore: | |
| - README.md | |
| - website/** | |
| - .github/workflows/publish-website.yml | |
| pull_request: | |
| branches: ["main"] | |
| paths-ignore: | |
| - README.md | |
| - website/** | |
| - .github/workflows/publish-website.yml | |
| permissions: | |
| contents: read | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Build | |
| run: cargo build | |
| - name: Run tests | |
| run: cargo test | |
| - name: Check formatting | |
| run: cargo fmt --check | |
| - name: Run linting | |
| run: cargo clippy |