rebase and update file-transfer example #407
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: "CodeQL Scanning" | |
# https://github.com/github/codeql-action | |
on: | |
push: | |
paths: | |
- "Makefile" | |
- "mongoose.c" | |
- "mongoose.h" | |
- test/unit-test | |
- test/mip-test | |
env: | |
IPV6: 0 | |
jobs: | |
CodeQL-Build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
permissions: | |
security-events: write | |
steps: | |
- uses: actions/checkout@v3 | |
with: { fetch-depth: 2 } | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v2 | |
with: | |
languages: cpp | |
- run: | | |
make test CC=gcc ASAN= ASAN_OPTIONS= | |
./test/setup_ga_network.sh && make mip_test CC=gcc ASAN= ASAN_OPTIONS= | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v2 |