Fix typo in Miller Rabin #3
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: Deploy PDF | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy-pdf: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up dependencies | |
run: sudo apt-get update && sudo apt-get install -y texlive-latex-recommended texlive-fonts-extra | |
- name: Build comprog.pdf | |
run: make clean && make | |
- name: Upload comprog.pdf | |
uses: actions/upload-artifact@v4 | |
with: | |
name: comprog.pdf | |
path: comprog.pdf | |