Skip to content

Stream output of certain commands to the terminal #4

Stream output of certain commands to the terminal

Stream output of certain commands to the terminal #4

Workflow file for this run

name: CI
on:
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup toolchain install stable --profile minimal
- uses: Swatinem/rust-cache@v2
- name: Build
run: cargo build --all-targets
- name: Check formatting
run: cargo fmt --all --check