8000 Update main.c · thommey/eggdrop@674b2d4 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

test

test #4

Workflow file for this run

on:
pull_request:
jobs:
build:
name: static analysis
runs-on: ubuntu-latest
steps:
- name: "Check out repository"
uses: actions/checkout@v2
- name: "Install dependencies"
run: sudo apt-get install tcl tcl-dev openssl libssl-dev
- name: "configure"
env:
CC: clang
run: ./configure
- name: "make config"
run: make config
- uses: whisperity/codechecker-analysis-action@v1
id: codechecker
with:
build-command: "cd ${{ github.workspace }} && make"
# Upload the results to the CI.
- uses: actions/upload-artifact@v2
with:
name: "CodeChecker Bug Reports"
path: ${{ steps.codechecker.outputs.result-html-dir }}
0