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:
|
2022-02-12 21:48:17 +01:00
|
|
|
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
|
2022-02-12 21:48:17 +01:00
|
|
|
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
|
|
|
|
|
2022-02-12 21:48:17 +01:00
|
|
|
- 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
|
|
|
|
|
2022-02-12 21:48:17 +01:00
|
|
|
- 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
|
2022-02-12 21:48:17 +01:00
|
|
|
args: ${{ matrix.flags }}
|
2021-09-04 10:05:36 +02:00
|
|
|
|
2022-02-12 21:48:17 +01:00
|
|
|
- name: Tests
|
|
|
|
uses: actions-rs/cargo@v1
|
2021-09-04 09:52:28 +02:00
|
|
|
with:
|
|
|
|
command: test
|
2022-02-12 21:48:17 +01:00
|
|
|
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
|
2022-02-12 21:48:17 +01:00
|
|
|
|
|
|
|
runs-on: ${{ matrix.platform }}
|
2021-09-04 09:52:28 +02:00
|
|
|
|
2022-02-12 21:48:17 +01:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Setup Rust toolchain
|
|
|
|
uses: actions-rs/toolchain@v1
|
2021-09-04 09:52:28 +02:00
|
|
|
with:
|
2022-02-12 21:48:17 +01:00
|
|
|
profile: minimal
|
|
|
|
toolchain: ${{ matrix.rust }}
|
|
|
|
override: true
|
|
|
|
components: rustfmt, clippy
|
2021-09-04 09:52:28 +02:00
|
|
|
|
2022-02-12 21:48:17 +01:00
|
|
|
- name: Install Nushell
|
|
|
|
uses: actions-rs/cargo@v1
|
2021-09-04 09:52:28 +02:00
|
|
|
with:
|
2022-02-12 21:48:17 +01:00
|
|
|
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-02-12 21:48:17 +01:00
|
|
|
|
2022-03-18 23:36:38 +01:00
|
|
|
- run: python -m pip install tox
|
2022-02-12 21:48:17 +01:00
|
|
|
|
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-02-12 21:48:17 +01:00
|
|
|
|
2022-03-18 23:36:38 +01:00
|
|
|
- name: Test Nushell in virtualenv
|
|
|
|
run: cd virtualenv && tox -e ${{ matrix.py }} -- -k nushell
|
|
|
|
shell: bash
|