CI: Update server build configuration to use C2x standard for i686 ta… #127
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: nodeget-server-ci | |
| on: | |
| workflow_dispatch: | |
| merge_group: | |
| pull_request: | |
| paths-ignore: | |
| - "docs/**" | |
| - "README.md" | |
| push: | |
| branches: | |
| - main | |
| - dev | |
| paths-ignore: | |
| - "docs/**" | |
| - "README.md" | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| clippy: | |
| name: Server Clippy | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Rust | |
| uses: ./.github/actions/setup-system | |
| with: | |
| toolchain: nightly | |
| components: clippy | |
| - name: Cargo clippy | |
| working-directory: ./server | |
| run: cargo clippy --locked --profile minimal | |
| check: | |
| name: Server Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Rust | |
| uses: ./.github/actions/setup-system | |
| with: | |
| toolchain: nightly | |
| components: clippy | |
| - name: Cargo clippy | |
| working-directory: ./server | |
| run: cargo clippy --locked --profile minimal |