Extended help messages in XTOP #238
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: SMake | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Checkout SMake | |
| uses: actions/checkout@v3 | |
| with: | |
| repository: 'kala13x/smake' | |
| submodules: recursive | |
| path: 'smake' | |
| - name: Build Smake | |
| run: cd smake && ./build.sh --install | |
| - name: Build with SMake | |
| run: smake && make |