2021-11-05 06:18:03 -04:00
|
|
|
name: coverity
|
2023-09-06 02:53:02 -04:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [2.0]
|
2021-11-05 06:18:03 -04:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
analyze:
|
|
|
|
if: github.repository == 'c9s/r3'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2023-09-06 02:53:02 -04:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Prepare
|
2021-11-05 06:18:03 -04:00
|
|
|
run: |
|
|
|
|
./autogen.sh
|
2023-09-06 02:53:02 -04:00
|
|
|
./configure --enable-check
|
|
|
|
- uses: vapier/coverity-scan-action@v1
|
|
|
|
with:
|
|
|
|
project: r3
|
|
|
|
email: yoanlin93+github@gmail.com
|
|
|
|
token: ${{ secrets.COVERITY_TOKEN }}
|