Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/third_party/rust/coremidi/.github/workflows/   (Firefox Browser Version 153.0.1©)  Datei vom 27.6.2026 mit Größe 622 B image not shown  

Quelle  test.yaml   Sprache: unbekannt

 
Spracherkennung für: .yaml vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]

name: Test

on:
  push:
    tags-ignore: [ "*" ]
  pull_request: {}

jobs:
  test:
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        rust: [1.58.1]
        os: [macOS-latest]
    steps:
      - uses: actions/checkout@v4
      - name: Install Rust
        uses: actions-rs/toolchain@v1
        with:
            toolchain: ${{ matrix.rust }}
            override: true
            components: rustfmt, clippy

      - name: Check format
        run: cargo fmt --all -- --check
      
      - name: Check clippy
        run: cargo clippy -- -D warnings
      
      - name: Run tests
        run: cargo test

[Dauer der Verarbeitung: 0.31 Sekunden]