Do not call log::set_logger
when tracing-support
is enabled
#15
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: Build examples with latest rust version | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Check rust version | |
run: rustup show | |
- name: Update rust | |
run: rustup update | |
- name: Build examples with ratatui and termion | |
run: cargo build --examples --features termion | |
- name: Build example with ratatui and crossterm | |
run: cargo build --examples --features crossterm |