Add terminal settings for pty stdout in sci #133
Workflow file for this run
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
name: CI-Compile | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
cargo: | |
name: Cargo Compile Components | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install | |
run: | | |
sudo apt update | |
sudo apt install cargo | |
sudo ln -s bash /bin/sh.bash | |
sudo mv /bin/sh.bash /bin/sh | |
- name: Compile | |
run: | | |
make compile |