nushell/.github/workflows/ci.yml

120 lines
2.9 KiB
YAML
Raw Normal View History

on:
pull_request:
push: # Run CI on the main branch after every merge. This is important to fill the GitHub Actions cache in a way that pull requests can see it
branches:
- main
2021-09-04 09:52:28 +02:00
2022-04-24 15:03:21 +02:00
name: continuous-integration
2021-09-04 09:52:28 +02:00
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]
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: ''
exclude:
- platform: windows-latest
style: default
- platform: macos-latest
style: default
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
- uses: Swatinem/rust-cache@v1
with:
key: "1" # increment this to bust the cache if needed
- name: Rustfmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: Build Nushell
uses: actions-rs/cargo@v1
with:
command: build
args: --workspace ${{ matrix.flags }}
- name: Clippy
uses: actions-rs/cargo@v1
2021-09-04 10:05:36 +02:00
with:
command: clippy
args: --workspace ${{ matrix.flags }} -- -D warnings -D clippy::unwrap_used -A clippy::needless_collect
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: --workspace ${{ 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
2021-09-04 09:52:28 +02:00
- uses: Swatinem/rust-cache@v1
with:
key: "1" # increment this to bust the cache if needed
- 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