netstat: Keep UTF-8 characters in process names #105
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |