r3/.github/workflows/coverity.yml

22 lines
425 B
YAML
Raw Normal View History

2021-11-05 06:18:03 -04:00
name: coverity
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:
- uses: actions/checkout@v3
- name: Prepare
2021-11-05 06:18:03 -04:00
run: |
./autogen.sh
./configure --enable-check
- uses: vapier/coverity-scan-action@v1
with:
project: r3
email: yoanlin93+github@gmail.com
token: ${{ secrets.COVERITY_TOKEN }}