Incorporation of Detection Efficiency in the Burst Simulation of FRETraj #1
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: FRETraj test | |
on: [pull_request, workflow_dispatch] | |
jobs: | |
build: | |
if: github.repository == 'fdsteffen/fretraj' | |
runs-on: ${{ matrix.os}} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
python: [3.9] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install Tox | |
run: pip install tox | |
- uses: conda-incubator/setup-miniconda@v2 | |
- name: Run Tox | |
run: tox -e py |