rename package file to nupm.nuon
#107
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
name: continuous-integration | |
env: | |
CLIPPY_OPTIONS: "-D warnings" | |
jobs: | |
fmt-check-clippy: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Rust toolchain | |
uses: actions-rust-lang/[email protected] | |
with: | |
rustflags: "" | |
- name: Format | |
run: cargo fmt --all -- --check | |
- name: Setup dependencies | |
run: | | |
git clone https://github.com/nushell/nushell | |
make NUSHELL_PATH=nushell dev-deps | |
shell: bash | |
- name: Check the library | |
run: cargo check --workspace --lib | |
- name: Check the tests | |
run: cargo check --workspace --tests | |
- name: Clippy | |
run: cargo clippy --workspace -- $CLIPPY_OPTIONS | |
tests: | |
strategy: | |
fail-fast: true | |
matrix: | |
platform: [windows-latest, macos-latest, ubuntu-20.04] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Rust toolchain | |
uses: actions-rust-lang/[email protected] | |
with: | |
rustflags: "" | |
- name: Setup dependencies | |
run: | | |
git clone https://github.com/nushell/nushell | |
make NUSHELL_PATH=nushell dev-deps | |
shell: bash | |
- name: Tests | |
run: cargo test --workspace |