man: regenerate manuals with txt2tags 3.3 #13
This file contains 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: C | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Checkout libixp | |
uses: actions/checkout@v3 | |
with: | |
repository: 0intro/libixp | |
path: libixp | |
- name: Dependencies | |
run: sudo apt-get -y install libxinerama-dev libxrandr-dev txt2tags | |
- name: Build libixp | |
working-directory: ./libixp | |
run: sudo make install | |
- name: make clean | |
run: make clean | |
- name: make | |
run: make |