/
githubmirror
/
authselect
Обзор
Документация
Войти
/
githubmirror
/
authselect
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
.github/workflows/build.yml
31 строка
822 B
Pavel Březina
ci: update actions to latest versions
08 июл 2025, 15:55
08 июл 2025, 15:55
d82d711
Код
Авторство
О чём код?
name: Build on: [push, pull_request] concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true jobs: make-check: runs-on: ubuntu-latest container: fedora:latest permissions: contents: read env: CFLAGS: -Wall -Wextra -Werror -Wno-sign-compare -Wno-unused-parameter -ggdb3 steps: - uses: actions/checkout@v4 - name: Install dependencies run: | scripts/auto install-build-deps - run: autoreconf -if && ./configure --enable-silent-rules - run: make - run: make check - run: make distcheck - name: Check translations run: | if [ -s "translations.log" ]; then cat translations.log exit 1 else echo "All translations compiled successfully." exit 0 fi