/
githubmirror
/
net-tools
Обзор
Документация
Войти
/
githubmirror
/
net-tools
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
.github/workflows/makefile.yml
37 строк
774 B
Bernd Eckenfels
chore: pedantic zizmor is happy on GH actions
12 май 2026, 01:18
12 май 2026, 01:18
054d4dc
Код
Авторство
О чём код?
name: Compile net-tools permissions: {} # overwritten below on: push: branches: [ "master" ] pull_request: branches: [ "master" ] concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} cancel-in-progress: true jobs: build: name: Compile with make permissions: {} # contents: read # pull-requests: write runs-on: ubuntu-latest steps: - name: checkout uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: persist-credentials: false - name: install-dev run: sudo apt-get install libbluetooth-dev libselinux1-dev gettext - name: configure run: yes "" | make config - name: compile run: make distcheck