mirror of
https://github.com/gbdev/rgbds.git
synced 2026-05-08 19:09:36 +00:00
167a7ee80c
- Updates `actions/checkout` from 4 to 6 - Updates `docker/login-action` from 3 to 4 - Updates `Chizkiyahu/delete-untagged-ghcr-action` from 5 to 6 - Updates `actions/upload-artifact` from 4 to 7 - Updates `actions/download-artifact` from 4 to 8 - Updates `cygwin/cygwin-install-action` from 4 to 6 Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
19 lines
552 B
YAML
19 lines
552 B
YAML
name: Static analysis
|
|
on:
|
|
- push
|
|
- pull_request
|
|
|
|
jobs:
|
|
analysis:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v6
|
|
- name: Install deps
|
|
shell: bash
|
|
run: |
|
|
./.github/scripts/install_deps.sh ubuntu-latest
|
|
- name: Static analysis
|
|
run: | # Silence warnings with too many false positives (https://stackoverflow.com/a/73913076)
|
|
make -kj CXX=g++-14 CXXFLAGS="-fanalyzer -fanalyzer-verbosity=0 -Wno-analyzer-use-of-uninitialized-value -DNDEBUG" Q=
|