Skip to content

chore: set virtual terminal inside Rust #138

chore: set virtual terminal inside Rust

chore: set virtual terminal inside Rust #138

Workflow file for this run

name: CI
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Setup repo ✨
uses: actions/checkout@v2
- name: Check formatting 🧼
run: cargo fmt -- --check
- name: Lint 🛑
run: cargo clippy -- -D warnings
- name: Build 🧱
run: cargo build --verbose
- name: Test 🧪
run: cargo test --verbose