Added tag v0.5.3 for changeset efafb75dc3ce #72
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: Build | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Install dependencies | |
| uses: awalsh128/cache-apt-pkgs-action@latest | |
| with: | |
| packages: libevdev-dev | |
| version: build | |
| - name: Use ccache | |
| uses: hendrikmuhs/ccache-action@v1.2 | |
| with: | |
| create-symlink: true | |
| - name: Bootstrap | |
| run: ./bootstrap | |
| - name: Configure | |
| run: ./configure --enable-examples --enable-tools | |
| - name: Build | |
| run: make | |
| - name: Check | |
| run: make check | |
| - name: Dist check | |
| run: make distcheck |