Skip to content

add a CI (#2)

add a CI (#2) #10

Workflow file for this run

on:
pull_request:
push:
branches:
- main
name: continuous-integration
env:
CLIPPY_OPTIONS: "-D warnings"
jobs:
fmt-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: bash .github/scripts/add-nu-dependencies.sh
- 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: bash .github/scripts/add-nu-dependencies.sh
- name: Tests
run: cargo test --workspace