Build Pull Request 60 by @dependabot[bot] #48
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: Rust | |
| run-name: Build ${{ github.ref == 'refs/heads/main' && 'Nightly' || github.event_name == 'pull_request' && format('{0} {1}', 'Pull Request', github.event.pull_request.number) || format('{0} {1}', 'Branch', github.ref) }} by @${{ github.actor }} | |
| on: | |
| push: | |
| branches: [ main ] | |
| paths: | |
| - "plugins/**/crates/**/*.rs" | |
| - "plugins/**/crates/**/Cargo.toml" | |
| - "Cargo.toml" | |
| - "Cargo.lock" | |
| - "CHANGELOG.md" | |
| - ".github/workflows/rust.yml" | |
| pull_request: | |
| branches: [ main ] | |
| paths: | |
| - "plugins/*/crates/**/*.rs" | |
| - "plugins/**/crates/**/Cargo.toml" | |
| - "Cargo.toml" | |
| - "Cargo.lock" | |
| - "CHANGELOG.md" | |
| - ".github/workflows/rust.yml" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
| env: | |
| CARGO_TERM_COLOR: always | |
| SCCACHE_GHA_ENABLED: "true" | |
| RUSTC_WRAPPER: "sccache" | |
| AWS_LC_SYS_PREBUILT_NASM: 1 | |
| jobs: | |
| formatting: | |
| name: Verify code formatting | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: VCS Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install latest nightly | |
| uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: nightly-2025-08-05 | |
| components: rustfmt | |
| - name: Run cargo fmt | |
| run: cargo fmt --all -- --check | |
| check_changelog: | |
| name: Check Changelog | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: tarides/changelog-check-action@v3 | |
| with: | |
| changelog: CHANGELOG.md | |
| if: github.actor != 'dependabot[bot]' | |
| lint: | |
| name: Lint | |
| needs: [ formatting, check_changelog ] | |
| if: always() && (!contains(needs.*.result, 'failure') && !contains(needs.*.result, 'cancelled')) | |
| runs-on: ubuntu-22.04 | |
| strategy: | |
| matrix: | |
| toolchain: [ stable, nightly-2025-08-05 ] | |
| target: [ x86_64-unknown-linux-gnu, x86_64-unknown-linux-musl ] | |
| steps: | |
| - name: VCS Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install rust toolchain | |
| uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: ${{ matrix.toolchain }} | |
| target: ${{ matrix.target }} | |
| components: clippy | |
| - name: Setup Node.js 18 | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 18 | |
| - name: Install Yarn | |
| uses: borales/actions-yarn@v5 | |
| with: | |
| cmd: --cwd plugins/graphql-client/web install | |
| - name: Install Yarn | |
| uses: borales/actions-yarn@v5 | |
| with: | |
| cmd: --cwd plugins/graphql-schema-visualization/web install | |
| - name: Cache dependencies | |
| uses: Swatinem/rust-cache@v2 | |
| - name: Run sccache-cache | |
| uses: mozilla-actions/sccache-action@v0.0.9 | |
| - name: Run cargo clippy | |
| run: cargo clippy | |
| build: | |
| name: Release Build | |
| needs: [ lint ] | |
| if: always() && (!contains(needs.*.result, 'failure') && !contains(needs.*.result, 'cancelled')) | |
| strategy: | |
| matrix: | |
| os: [ ubuntu-22.04, ubuntu-22.04-arm, macos-latest, windows-latest ] | |
| toolchain: [ stable, nightly-2025-08-05 ] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: VCS Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install rust toolchain | |
| uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: ${{ matrix.toolchain }} | |
| - name: Setup Node.js 18 | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 18 | |
| - name: Install Yarn | |
| uses: borales/actions-yarn@v5 | |
| with: | |
| cmd: --cwd plugins/graphql-client/web install | |
| - name: Install Yarn | |
| uses: borales/actions-yarn@v5 | |
| with: | |
| cmd: --cwd plugins/graphql-schema-visualization/web install | |
| - name: Cache dependencies | |
| uses: Swatinem/rust-cache@v2 | |
| - name: Run sccache-cache | |
| uses: mozilla-actions/sccache-action@v0.0.9 | |
| - name: Build (Release Mode) | |
| run: cargo build --release --verbose | |
| test: | |
| name: Tests | |
| needs: [ lint ] | |
| if: always() && (!contains(needs.*.result, 'failure') && !contains(needs.*.result, 'cancelled')) | |
| strategy: | |
| matrix: | |
| toolchain: [ stable, nightly-2025-08-05 ] | |
| target: [ x86_64-unknown-linux-gnu, x86_64-unknown-linux-musl ] | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: VCS Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install rust toolchain | |
| uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: ${{ matrix.toolchain }} | |
| target: ${{ matrix.target }} | |
| - name: Install musl-tools | |
| uses: awalsh128/cache-apt-pkgs-action@v1 | |
| with: | |
| packages: musl-tools # provides musl-gcc | |
| version: 1.0 | |
| if: matrix.target == 'x86_64-unknown-linux-musl' | |
| - name: Setup Node.js 18 | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 18 | |
| - name: Install Yarn | |
| uses: borales/actions-yarn@v5 | |
| with: | |
| cmd: --cwd plugins/graphql-client/web install | |
| - name: Install Yarn | |
| uses: borales/actions-yarn@v5 | |
| with: | |
| cmd: --cwd plugins/graphql-schema-visualization/web install | |
| - name: Cache dependencies | |
| uses: Swatinem/rust-cache@v2 | |
| - name: Run sccache-cache | |
| uses: mozilla-actions/sccache-action@v0.0.9 | |
| - name: Test (Release Mode) | |
| run: cargo test --release --verbose --target ${{ matrix.target }} |