Merge pull request #94 from fdietze/fix/empty-log-panic #232
This file contains hidden or 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 | |
| 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: Build examples with termion | |
| run: cargo build --examples --features termion | |
| - name: Build example with crossterm | |
| run: cargo build --examples --features crossterm | |
| - name: Build examples with termion and custom formatter | |
| run: cargo build --examples --features termion,formatter |