From 86434aaa2bd21f684167533e1c61b2ed626cc78c Mon Sep 17 00:00:00 2001 From: ddidderr Date: Sat, 29 Aug 2026 18:07:54 +0200 Subject: [PATCH] fix: remote unused github workflow --- .github/workflows/build.yml | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index e9af743..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Build TDK Pinball - -on: - push: - pull_request: - -jobs: - build: - strategy: - fail-fast: false - matrix: - os: [ubuntu-latest, macos-latest, windows-latest] - runs-on: ${{ matrix.os }} - defaults: - run: - working-directory: tdkpin-rs - steps: - - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@stable - with: - components: clippy, rustfmt - - name: Install Linux development libraries - if: runner.os == 'Linux' - run: sudo apt-get update && sudo apt-get install -y libasound2-dev libgl1-mesa-dev libxi-dev - - run: cargo check --all-targets - - run: cargo test --all-targets - - run: cargo clippy --all-targets -- -D warnings