png: fix rowbytes truncation, bound profile inflate, check short writes #395
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
| # The main CI workflow which runs the individual workflows | |
| # and gathers their results in the workflow overview. | |
| # See <https://docs.github.com/en/actions/sharing-automations/reusing-workflows> | |
| name: CI build and test | |
| on: | |
| push: | |
| branches: [master, GD-*] | |
| pull_request: | |
| branches: [master, GD-*] | |
| permissions: | |
| contents: read | |
| jobs: | |
| codecov: | |
| if: github.event_name == 'push' | |
| uses: ./.github/workflows/codecov.yml | |
| secrets: inherit | |
| # Only want to analyze official releases, not any pull requests. | |
| # The free service doesn't have enough bandwidth for both. | |
| coverity: | |
| if: github.event_name == 'push' | |
| uses: ./.github/workflows/coverity.yml | |
| secrets: inherit | |
| ubuntu: | |
| uses: ./.github/workflows/ci_ubuntu.yml | |
| windows: | |
| uses: ./.github/workflows/ci_windows.yml | |
| macos: | |
| uses: ./.github/workflows/ci_macos.yml | |
| mingw: | |
| uses: ./.github/workflows/ci_windows_mingw.yml |