From f515eba2e05854f460c1ce8239bdac927a2e7e0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20=C5=BD=C3=A1dn=C3=ADk?= Date: Thu, 3 Mar 2022 10:40:23 +0200 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 44 ++++++++++++++++++++-------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e2e7e068..9e079368 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,34 +66,34 @@ jobs: args: --all ${{ matrix.flags }} - python-virtualenv: - strategy: - fail-fast: false - matrix: - platform: [ubuntu-latest, macos-latest, windows-latest] - rust: - - stable + #python-virtualenv: + # strategy: + # fail-fast: false + # matrix: + # platform: [ubuntu-latest, macos-latest, windows-latest] + # rust: + # - stable # py: # - py - runs-on: ${{ matrix.platform }} + # runs-on: ${{ matrix.platform }} - steps: - - uses: actions/checkout@v2 + # steps: + # - uses: actions/checkout@v2 - - name: Setup Rust toolchain - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: ${{ matrix.rust }} - override: true - components: rustfmt, clippy + # - name: Setup Rust toolchain + # uses: actions-rs/toolchain@v1 + # with: + # profile: minimal + # toolchain: ${{ matrix.rust }} + # override: true + # components: rustfmt, clippy - - name: Install Nushell - uses: actions-rs/cargo@v1 - with: - command: install - args: --path=. --no-default-features + # - name: Install Nushell + # uses: actions-rs/cargo@v1 + # with: + # command: install + # args: --path=. --no-default-features # - name: Setup Python # uses: actions/setup-python@v2