nushell/.github/workflows/ci.yml

115 lines
2.7 KiB
YAML
Raw Normal View History

2021-11-09 07:14:14 +01:00
on: [pull_request]
2021-09-04 09:52:28 +02:00
name: Continuous integration
jobs:
ci:
strategy:
fail-fast: false
2021-09-04 09:52:28 +02:00
matrix:
2022-02-13 13:45:53 +01:00
platform: [windows-latest, macos-latest, ubuntu-latest]
style: [all, default, minimal]
2021-09-04 09:52:28 +02:00
rust:
- stable
include:
- style: all
flags: '--all-features'
2022-02-13 13:45:53 +01:00
- style: default
flags: ''
- style: minimal
flags: '--no-default-features'
exclude:
- platform: windows-latest
style: default
- platform: windows-latest
style: minimal
- platform: macos-latest
style: default
- platform: macos-latest
style: minimal
2021-09-04 09:52:28 +02:00
2021-10-11 21:19:43 +02:00
runs-on: ${{ matrix.platform }}
2021-09-04 09:52:28 +02:00
steps:
- uses: actions/checkout@v2
- name: Setup Rust toolchain
uses: actions-rs/toolchain@v1
2021-09-04 09:52:28 +02:00
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
components: rustfmt, clippy
- name: Rustfmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: Clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all ${{ matrix.flags }} -- -D warnings -D clippy::unwrap_used -A clippy::needless_collect
- name: Build Nushell
uses: actions-rs/cargo@v1
2021-09-04 10:05:36 +02:00
with:
command: build
args: ${{ matrix.flags }}
2021-09-04 10:05:36 +02:00
- name: Tests
uses: actions-rs/cargo@v1
2021-09-04 09:52:28 +02:00
with:
command: test
args: --all ${{ matrix.flags }}
python-virtualenv:
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
rust:
- stable
2022-03-18 23:36:38 +01:00
py:
- py
runs-on: ${{ matrix.platform }}
2021-09-04 09:52:28 +02:00
steps:
- uses: actions/checkout@v2
- name: Setup Rust toolchain
uses: actions-rs/toolchain@v1
2021-09-04 09:52:28 +02:00
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
components: rustfmt, clippy
2021-09-04 09:52:28 +02:00
- name: Install Nushell
uses: actions-rs/cargo@v1
2021-09-04 09:52:28 +02:00
with:
command: install
args: --path=. --no-default-features
2022-03-18 23:36:38 +01:00
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
2022-03-18 23:36:38 +01:00
- run: python -m pip install tox
2022-03-18 23:36:38 +01:00
- name: Install virtualenv
run: |
git clone https://github.com/kubouch/virtualenv.git && \
cd virtualenv && \
git checkout engine-q-update
shell: bash
2022-03-18 23:36:38 +01:00
- name: Test Nushell in virtualenv
run: cd virtualenv && tox -e ${{ matrix.py }} -- -k nushell
shell: bash