1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2024-10-30 11:54:01 -04:00
libkernaux/.github/workflows/test.yml

35 lines
677 B
YAML
Raw Normal View History

2021-12-13 17:24:25 -05:00
name: Test
on:
push:
2021-12-13 17:33:53 -05:00
branches: [master]
2021-12-13 17:24:25 -05:00
pull_request:
2021-12-13 17:33:53 -05:00
branches: [master]
2021-12-13 17:24:25 -05:00
jobs:
2021-12-14 14:35:34 -05:00
test_deny_warnings:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: autogen
run: ./autogen.sh
- name: configure --disable-multiboot2 CFLAGS='-Werror'
run: ./configure
- name: make
run: make
- name: check
run: make check
test_allow_warnings:
2021-12-13 17:24:25 -05:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: autogen
run: ./autogen.sh
- name: configure
run: ./configure
- name: make
run: make
- name: check
run: make check