Skip to content

Add tRNA dynamics to Pinetree #3

Add tRNA dynamics to Pinetree

Add tRNA dynamics to Pinetree #3

name: build_for_macos_windows_linux
on: [pull_request]
defaults:
run:
shell: bash
jobs:
build:
runs-on: ${{ matrix.config.os }}
strategy:
matrix:
config:
- {
name: "Windows Latest MinGW", artifact: "Windows-MinGW.tar.xz",
os: windows-latest,
build_type: "Release", cc: "gcc", cxx: "g++"
}
- {
name: "Ubuntu Latest GCC", artifact: "Linux.tar.xz",
os: ubuntu-latest,
build_type: "Release", cc: "gcc", cxx: "g++"
}
- {
name: "macOS Latest Clang", artifact: "macOS.tar.xz",
os: macos-latest,
build_type: "Release", cc: "clang", cxx: "clang++"
}
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install cmake
- name: Install pinetree
run: |
pip install .
- name: Test install
run: |
import pinetree
shell: python