Adopt coverity workflow from A4091.device

This commit is contained in:
Matt Harlum 2023-12-04 15:23:27 +01:00
parent 43a226f63a
commit 31f5460fb3

21
.github/workflows/coverity.yml vendored Normal file
View File

@ -0,0 +1,21 @@
name: Coverity Scan
# We only want to test official release code, not every pull request.
on:
push:
branches: [main]
workflow_dispatch:
jobs:
coverity:
runs-on: ubuntu-latest
container: stefanreinauer/amiga-gcc
steps:
- uses: actions/checkout@v3
with:
submodules: true
- uses: reinauer/coverity-scan-action@v1
with:
configure: --compiler m68k-amigaos-gcc --comptype gcc --template
email: ${{ secrets.COVERITY_SCAN_EMAIL }}
token: ${{ secrets.COVERITY_SCAN_TOKEN }}