GitHub Actions: Avoid Ubuntu 20.04 for coverage collection

.. because its MinGW GCC 9.3.0 fails to create any .gcda files
at test runtime (while that works just fine on 18.04 and 22.04).
This commit is contained in:
Sebastian Pipping 2022-09-08 14:44:58 +02:00
parent 003ac7403f
commit 1156ae7dca

View file

@ -38,7 +38,7 @@ on:
jobs:
checks:
name: Collect test coverage
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
env:
CFLAGS: -g3 -pipe
steps: