Update ci.yml

This commit is contained in:
Jakub Žádník 2022-03-03 10:40:23 +02:00 committed by GitHub
parent d90b7953dd
commit f515eba2e0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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