mirror of
https://github.com/LIV2/lide.device.git
synced 2025-12-06 00:32:45 +00:00
23 lines
541 B
YAML
23 lines
541 B
YAML
name: Coverity Scan
|
|
|
|
# We only want to test official release code, not every pull request.
|
|
on:
|
|
push:
|
|
tags:
|
|
- "Release-**"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
coverity:
|
|
runs-on: ubuntu-latest
|
|
container: liv2/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 }}
|