Fix vcam_enum_framesizes to enumerate all sizes when scaling is enabled #54
Workflow file for this run
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: main | |
| on: [push, pull_request] | |
| jobs: | |
| vcam: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout code | |
| uses: actions/checkout@v3.0.2 | |
| - name: make | |
| run: make | |
| shell: bash | |
| coding-style: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3.0.2 | |
| - name: coding convention | |
| run: | | |
| sudo apt-get install -q -y clang-format-18 | |
| sh .ci/check-format.sh | |
| shell: bash |