Refactor/burn central artifact start #338
Workflow file for this run
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: CI | |
| env: | |
| CARGO_TERM_COLOR: always | |
| # For now we execute CI only on PR to save on CI time | |
| on: | |
| pull_request: {} | |
| jobs: | |
| checks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup Rust | |
| uses: tracel-ai/github-actions/setup-rust@v3 | |
| with: | |
| rust-toolchain: stable | |
| cache-key: stable-linux | |
| # -------------------------------------------------------------------------------- | |
| - name: Audit | |
| run: cargo xtask check audit | |
| # -------------------------------------------------------------------------------- | |
| - name: Format | |
| shell: bash | |
| env: | |
| # work around for colors | |
| # see: https://github.com/rust-lang/rustfmt/issues/3385 | |
| TERM: xterm-256color | |
| run: cargo xtask check format | |
| # -------------------------------------------------------------------------------- | |
| - name: Lint | |
| run: cargo xtask check lint | |
| # -------------------------------------------------------------------------------- | |
| - name: Typos | |
| uses: tracel-ai/github-actions/check-typos@v1 | |
| # -------------------------------------------------------------------------------- | |
| - name: Unit Tests | |
| run: cargo xtask test unit | |
| # -------------------------------------------------------------------------------- | |
| - name: Integration Tests | |
| run: cargo xtask test integration | |
| # -------------------------------------------------------------------------------- | |
| - name: Documentation Tests | |
| run: cargo xtask doc tests |