Create workflow for pull request - Build Release and Debug #4
Workflow file for this run
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: 'Pull Request workflow' | |
on: [pull_request] | |
jobs: | |
build_release: | |
runs-on: ubuntu-latest | |
steps: | |
- run: sudo apt-get install base-devel | |
- run: sudo apt-get install libx11-dev | |
- run: sudo apt-get install libpng-dev | |
- run: make -k |