Skip to content

updaitng

updaitng #13

Workflow file for this run

name: Workflow Build All
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: '0 0 * * 1'
jobs:
test-Classical_Networking_Workflow:
runs-on: self-hosted
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
token: ${{ secrets.TOKEN }}
- name: Conda Build
run: |
cd Classical_Networking_Workflow
mamba create -n test -f ./bin/conda_env.yml -y
# remove test
mamba remove -n test --all -y
test-FBMN:
runs-on: self-hosted
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
token: ${{ secrets.TOKEN }}
- name: Conda Build
run: |
cd Feature_Based_Molecular_Networking_Workflow
mamba create -n test -f ./bin/conda_env.yml -y
# remove test
mamba remove -n test --all -y