Rust #106
This file contains 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 | |
concurrency: | |
group: Rust-${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
security-events: write | |
on: | |
workflow_dispatch: | |
push: | |
branches: [Current] | |
pull_request: | |
branches: [Current] | |
workflow_call: | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
env: | |
ADBLOCK: true | |
ASTRO_TELEMETRY_DISABLED: 1 | |
AUTOMATEDLAB_TELEMETRY_OPTOUT: 1 | |
AZURE_CORE_COLLECT_TELEMETRY: 0 | |
CHOOSENIM_NO_ANALYTICS: 1 | |
DIEZ_DO_NOT_TRACK: 1 | |
DOTNET_CLI_TELEMETRY_OPTOUT: 1 | |
DOTNET_INTERACTIVE_CLI_TELEMETRY_OPTOUT: 1 | |
DO_NOT_TRACK: 1 | |
ET_NO_TELEMETRY: 1 | |
GATSBY_TELEMETRY_DISABLED: 1 | |
GATSBY_TELEMETRY_OPTOUT: 1 | |
GATSBY_TELEMETRY_OPT_OUT: 1 | |
GRIT_TELEMETRY_DISABLED: 1 | |
HASURA_GRAPHQL_ENABLE_TELEMETRY: false | |
HINT_TELEMETRY: off | |
HOMEBREW_NO_ANALYTICS: 1 | |
INFLUXD_REPORTING_DISABLED: true | |
ITERATIVE_DO_NOT_TRACK: 1 | |
NEXT_TELEMETRY_DEBUG: 1 | |
NEXT_TELEMETRY_DISABLED: 1 | |
NG_CLI_ANALYTICS: false | |
NUXT_TELEMETRY_DISABLED: 1 | |
PIN_DO_NOT_TRACK: 1 | |
POWERSHELL_TELEMETRY_OPTOUT: 1 | |
SAM_CLI_TELEMETRY: 0 | |
STNOUPGRADE: 1 | |
STRIPE_CLI_TELEMETRY_OPTOUT: 1 | |
TELEMETRY_DISABLED: 1 | |
TERRAFORM_TELEMETRY: 0 | |
VCPKG_DISABLE_METRICS: 1 | |
strategy: | |
matrix: | |
toolchain: ["stable", "nightly"] | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions-rs/[email protected] | |
with: | |
profile: minimal | |
toolchain: ${{ matrix.toolchain }} | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_analyze/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_analyze/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_aria/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_aria/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_aria_metadata/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_aria_metadata/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_cli/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_cli/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_configuration/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_configuration/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_console/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_console/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_control_flow/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_control_flow/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_css_analyze/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_css_analyze/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_css_factory/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_css_factory/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_css_formatter/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_css_formatter/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_css_parser/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_css_parser/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_css_semantic/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_css_semantic/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_css_syntax/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_css_syntax/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_deserialize/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_deserialize/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_deserialize_macros/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_deserialize_macros/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_diagnostics/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_diagnostics/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_diagnostics_categories/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_diagnostics_categories/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_diagnostics_macros/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_diagnostics_macros/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_flags/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_flags/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_formatter/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_formatter/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_formatter_test/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_formatter_test/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_fs/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_fs/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_graphql_analyze/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_graphql_analyze/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_graphql_factory/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_graphql_factory/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_graphql_formatter/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_graphql_formatter/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_graphql_parser/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_graphql_parser/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_graphql_semantic/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_graphql_semantic/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_graphql_syntax/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_graphql_syntax/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_grit_factory/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_grit_factory/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_grit_formatter/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_grit_formatter/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_grit_parser/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_grit_parser/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_grit_patterns/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_grit_patterns/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_grit_syntax/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_grit_syntax/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_html_factory/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_html_factory/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_html_formatter/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_html_formatter/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_html_parser/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_html_parser/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_html_syntax/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_html_syntax/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_js_analyze/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_js_analyze/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_js_factory/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_js_factory/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_js_formatter/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_js_formatter/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_js_parser/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_js_parser/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_js_semantic/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_js_semantic/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_js_syntax/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_js_syntax/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_js_transform/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_js_transform/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_json_analyze/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_json_analyze/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_json_factory/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_json_factory/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_json_formatter/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_json_formatter/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_json_parser/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_json_parser/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_json_syntax/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_json_syntax/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_lsp/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_lsp/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_lsp_converters/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_lsp_converters/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_markdown_factory/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_markdown_factory/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_markdown_parser/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_markdown_parser/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_markdown_syntax/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_markdown_syntax/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_markup/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_markup/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_migrate/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_migrate/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_parser/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_parser/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_project/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_project/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_rowan/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_rowan/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_service/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_service/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_string_case/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_string_case/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_suppression/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_suppression/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_test_utils/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_test_utils/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_text_edit/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_text_edit/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_text_size/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_text_size/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_ungrammar/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_ungrammar/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_unicode_table/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_unicode_table/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_wasm/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_wasm/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_yaml_factory/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_yaml_factory/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_yaml_parser/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_yaml_parser/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/biome_yaml_syntax/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/biome_yaml_syntax/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./crates/tests_macros/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./crates/tests_macros/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./fuzz/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./fuzz/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./xtask/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./xtask/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./xtask/bench/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./xtask/bench/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./xtask/codegen/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./xtask/codegen/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./xtask/coverage/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./xtask/coverage/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./xtask/libs_bench/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./xtask/libs_bench/Cargo.toml | |
- uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
Target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('./xtask/rules_check/Cargo.toml') }} | |
- uses: actions-rs/[email protected] | |
with: | |
command: build | |
args: --release --all-features --manifest-path ./xtask/rules_check/Cargo.toml |