Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
ctrlaltaf committed Jun 7, 2024
1 parent 91c2637 commit d61e075
Showing 1 changed file with 38 additions and 18 deletions.
56 changes: 38 additions & 18 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
@@ -11,21 +11,41 @@ on:
- master

jobs:
example-3:
name: Ex3 Linux
runs-on: "ubuntu-latest"
defaults:
run:
shell: bash -el {0}
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
activate-environment: protein-prediction
environment-file: environment.yml
python-version: 3.8 # Correct the Python version here
auto-activate-base: false
channels: conda-forge, defaults
- run: |
conda info
conda list
# example-3:
# name: Ex3 Linux
# runs-on: "ubuntu-latest"
# defaults:
# run:
# shell: bash -el {0}
# steps:
# - uses: actions/checkout@v4
# - uses: conda-incubator/setup-miniconda@v3
# with:
# activate-environment: protein-prediction
# environment-file: environment.yml
# python-version: 3.8 # Correct the Python version here
# auto-activate-base: false
# channels: conda-forge, defaults
# - run: |
# conda info
# conda list
conda-only:
name: Test conda environment
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install conda environment
uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: protein-prediction
environment-file: environment.yml
auto-activate-base: false
miniconda-version: "latest"
# Log conda environment contents
- name: Log conda environment
shell: bash --login {0}
run: conda list

0 comments on commit d61e075

Please sign in to comment.