test create_view with no file provided #122
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: main | |
on: | |
pull_request: | |
branches: [ main, rewrite ] | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-24.04 | |
env: | |
RAWTERM_DEBUG: true | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- run: sudo apt-get install clang clang-tidy | |
- run: sudo apt-get remove zlib1g-dev | |
- uses: threeal/[email protected] | |
with: | |
run-build: true | |
options: RUN_TESTS=true | |
generator: Ninja | |
- uses: pre-commit/[email protected] | |
unit-tests: | |
runs-on: ubuntu-24.04 | |
env: | |
RAWTERM_DEBUG: true | |
steps: | |
- uses: actions/checkout@v4 | |
- run: sudo apt-get install clang clang-tidy | |
- run: sudo apt-get remove zlib1g-dev | |
- uses: threeal/[email protected] | |
with: | |
run-build: true | |
options: RUN_TESTS=true | |
generator: Ninja | |
- run: ./build/tests/test_exe |