Skip to content

Bump scipy from 1.16.3 to 1.17.0 #252

Bump scipy from 1.16.3 to 1.17.0

Bump scipy from 1.16.3 to 1.17.0 #252

Workflow file for this run

name: PDF
on: [push, pull_request]
jobs:
build_latex:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Python
uses: actions/setup-python@v6
with:
python-version: 3.x
- run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
mkdir PIC
cd DFT
python DampingForce.py
python Deformation.py
python FrameResult.py
python FundamentalSolution.py
python InertialForce.py
python Newmark.py
python Nuttall.py
python PureSine.py
python SDOF.py
cd ..
- name: Compile
uses: xu-cheng/texlive-action@v3
with:
scheme: full
run: |
latexmk -pdf DYNDSP.tex
- name: Release
if: github.event_name == 'push'
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: DYNDSP.pdf
asset_name: DYNDSP.pdf
tag: latest
overwrite: true