Merge pull request #93 from czertyaka/92-hw-lifo-stack #113
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 | |
| on: | |
| workflow_call: {} | |
| push: | |
| branches: [ "master" ] | |
| pull_request: | |
| branches: [ "master" ] | |
| jobs: | |
| compile: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| submodules: true | |
| - uses: cachix/install-nix-action@v31 | |
| - name: Compile PDF files | |
| run: nix-shell --run "PREFIX=install make install -j $(nproc)" | |
| - name: Upload PDF files | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: pdf | |
| path: install/ |