fixed a sign in ccw_rotation + readability #71
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: Test build on pull requests | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the master branch | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build_latex: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Git repository | |
uses: actions/checkout@v2 | |
- name: pdflatex main | |
uses: dante-ev/latex-action@latest | |
with: | |
root_file: main.tex | |
compiler: pdflatex | |
args: -interaction=nonstopmode -shell-escape | |
- name: pdflatex main | |
uses: dante-ev/latex-action@latest | |
with: | |
root_file: main.tex | |
compiler: pdflatex | |
args: -interaction=nonstopmode -shell-escape | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: main.pdf | |
path: main.pdf |