Skip to content

Workflow file for this run

name: pyHWM14 Repository CI Workflow
on:
push:
branches: [ main ]
tags:
- v*.*.*
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python_version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python_version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python_version }}
- name: Explore
run: |
which gfortran
lsb_release --all
# - name: Install dependencies
# run: |
# # make install-gfortran
# make install
# - name: Run code test in Python programs
# run: |
# make test