/
githubmirror
/
numactl
Обзор
Документация
Войти
/
githubmirror
/
numactl
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
.github/workflows/makefile.yml
36 строк
658 B
Gabriela Gutierrez
feat: Add minimum permissions to makefile.yml
10 мар 2023, 23:12
10 мар 2023, 23:12
e7a3eb2
Код
Авторство
О чём код?
name: Makefile CI on: push: branches: [ "master", "action-1" ] pull_request: branches: [ "master", "action-1" ] permissions: contents: read jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: configure run: ./autogen.sh && ./configure - name: Install dependencies run: make - name: Werror run run: make clean ; CFLAGS="-O2 -Wall -Werror" make - name: clang run run: make clean ; CFLAGS="-O2 -Wall -Werror" CC=clang make - name: Run check run: make check - name: Run distcheck run: make distcheck