Poprawki #141
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 after push | |
| on: | |
| push: | |
| branches: [ main ] | |
| paths-ignore: | |
| - '.github/**' | |
| - 'picture/**' | |
| - 'program/**' | |
| - '*.md' | |
| - '**/.autoopen-text' | |
| - '.autoopen-text' | |
| - '.gitignore' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: packages install | |
| run: sudo apt-get update; sudo apt-get install libtool-bin libcap-dev libncurses-dev libssl-doc libx11-dev libxcb-icccm4-dev libxcb-shape0-dev libxcb-util-dev libxcb-xkb-dev libxkbcommon-x11-dev manpages-dev ncurses-doc | |
| - name: make | |
| run: make build |