Add allow_content_tools and force_intger_mv to AV1 enc #422
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: style | |
on: [push, pull_request] | |
jobs: | |
style-check: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: 'Checkout' | |
uses: actions/checkout@v4 | |
- name: 'Install prerequisites' | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y \ | |
astyle | |
- name: 'Check for style changes' | |
run: ./style_unify && .github/workflows/style.sh | |