Skip to content

Add submodule Ellie-Core-Library #175

Add submodule Ellie-Core-Library

Add submodule Ellie-Core-Library #175

Workflow file for this run

name: Rust
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ellie_engine
steps:
- uses: actions/checkout@v2
- name: Download EllieAssist
run: git clone https://github.com/behemehal/EllieAssist.git
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Build
run: cargo build --verbose
#- name: Run tests
# run: cargo test --verbose
- name: Check formatting
run: cargo fmt --all -- --check --verbose