From 62b157a2105bdd07fa2d51755f22f2086f385da1 Mon Sep 17 00:00:00 2001 From: Brian Merchant Date: Thu, 27 Oct 2022 07:28:32 -0700 Subject: [PATCH] Disable tests in CI Commented it out, so we can re-introduce it later, once we actually have tests. --- .github/workflows/ci.yml | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7b21182e..ae2bad36 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,29 +30,29 @@ jobs: command: check args: --all-targets - test: - name: Tests - strategy: - # Tests are most likely to have OS-specific behavior - matrix: - os: [ubuntu-latest, windows-latest, macOS-latest] +# test: +# name: Tests +# strategy: +# # Tests are most likely to have OS-specific behavior +# matrix: +# os: [ubuntu-latest, windows-latest, macOS-latest] - runs-on: ${{ matrix.os }} - steps: - - name: Checkout sources - uses: actions/checkout@v2 +# runs-on: ${{ matrix.os }} +# steps: +# - name: Checkout sources +# uses: actions/checkout@v2 - - name: Install stable toolchain - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: stable - override: true +# - name: Install stable toolchain +# uses: actions-rs/toolchain@v1 +# with: +# profile: minimal +# toolchain: stable +# override: true - - name: Run cargo test - uses: actions-rs/cargo@v1 - with: - command: test +# - name: Run cargo test +# uses: actions-rs/cargo@v1 +# with: +# command: test build_examples: name: Build examples