From 6c1480720a942e33e62ca8fe60dde5bb3b11501b Mon Sep 17 00:00:00 2001 From: kayos Date: Thu, 28 May 2026 11:13:58 -0700 Subject: [PATCH] =?UTF-8?q?ci:=20drop=20orphan=20upstream=20workflow=20?= =?UTF-8?q?=E2=80=94=20incompatible=20with=20our=20runner=20labels=20(#299?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/validate.yml | 70 ---------------------------------- 1 file changed, 70 deletions(-) delete mode 100644 .github/workflows/validate.yml diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml deleted file mode 100644 index be8b186..0000000 --- a/.github/workflows/validate.yml +++ /dev/null @@ -1,70 +0,0 @@ -# Based on https://github.com/actions-rs/meta/blob/master/recipes/quickstart.md - -on: - push: { } - -name: Validate - -jobs: - check: - name: Check - strategy: - fail-fast: false - matrix: - os: [ windows-latest, ubuntu-latest, macOS-latest ] - rust: [ stable ] - - runs-on: ${{ matrix.os }} - - steps: - - name: Checkout sources - uses: actions/checkout@v2 - - - name: Install stable toolchain - uses: dtolnay/rust-toolchain@stable - with: - toolchain: ${{ matrix.rust }} - - - name: Run cargo check - run: cargo check - - test: - name: Test Suite - strategy: - fail-fast: false - matrix: - os: [ windows-latest, ubuntu-latest, macOS-latest ] - rust: [ stable ] - - runs-on: ${{ matrix.os }} - - steps: - - name: Checkout sources - uses: actions/checkout@v2 - - - name: Install stable toolchain - uses: dtolnay/rust-toolchain@stable - with: - toolchain: stable - - - name: Run cargo test - run: cargo test --release - - lints: - name: Lints - runs-on: ubuntu-latest - steps: - - name: Checkout sources - uses: actions/checkout@v2 - - - name: Install stable toolchain - uses: dtolnay/rust-toolchain@stable - with: - toolchain: stable - components: rustfmt, clippy - - - name: Run cargo fmt - run: cargo fmt --all -- --check - - - name: Run cargo clippy - run: cargo clippy -- -D warnings