fortran_packages #779
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
# Github action to build fortran_packages. | |
# | |
name: fortran_packages | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 2 * * *" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout source | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
- name: Install python libraries | |
run: pip3 install --user -r requirements.txt | |
- name: fortran_package | |
run: python fortran_package.py | |
- name: Upload data files | |
uses: actions/upload-artifact@v4 | |
with: | |
name: _data | |
path: _data/ |