diff options
author | Carlo Marcelo Arenas Belón <carenas@gmail.com> | 2021-08-09 03:38:33 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-08-11 20:25:06 +0200 |
commit | cebead1ebfb8f6c78097173749596cb9604776d9 (patch) | |
tree | 42a647b8e9543e63e8f128af7558d2bd9beac218 /.github | |
parent | object-file: use unsigned arithmetic with bit mask (diff) | |
download | git-cebead1ebfb8f6c78097173749596cb9604776d9.tar.xz git-cebead1ebfb8f6c78097173749596cb9604776d9.zip |
ci: run a pedantic build as part of the GitHub workflow
similar to the recently added sparse task, it is nice to know as early
as possible.
add a dockerized build using fedora (that usually has the latest gcc)
to be ahead of the curve and avoid older ISO C issues at the same time.
Signed-off-by: Carlo Marcelo Arenas Belón <carenas@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/main.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 73856bafc9..b93561978d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -324,6 +324,8 @@ jobs: image: alpine - jobname: Linux32 image: daald/ubuntu32:xenial + - jobname: pedantic + image: fedora env: jobname: ${{matrix.vector.jobname}} runs-on: ubuntu-latest |