Skip to content

Commit

Permalink
switch from clone to checkout to try and get fpaths right
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonBurns committed Oct 30, 2023
1 parent a469dc8 commit 04beb6f
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

env:
# update this to run tests with un merged rmg-py branches
RMG_PY_BRANCH: main

jobs:
build-osx:
Expand All @@ -43,16 +46,11 @@ jobs:
run:
shell: bash -l {0}
steps:
- name: Checkout RMG-database
uses: actions/checkout@v3
with:
path: ../

- name: Checkout RMG-Py
uses: actions/checkout@v3
with:
repository: ReactionMechanismGenerator/RMG-Py
ref: main
ref: ${{ env.RMG_PY_BRANCH }}

# configures the mamba environment manager and builds the environment
- name: Setup Mambaforge Python 3.7
Expand All @@ -71,6 +69,10 @@ jobs:
mamba info
mamba list
# Clone RMG-database
- name: Clone RMG-database
uses: actions/checkout@v3

# modify env variables as directed in the RMG installation instructions
- name: Set Environment Variables
run: |
Expand All @@ -95,17 +97,11 @@ jobs:
run:
shell: bash -l {0}
steps:
- name: Checkout RMG-database
uses: actions/checkout@v3
with:
path: ../

- name: Checkout RMG-Py
uses: actions/checkout@v3
with:
# change this if working on a different fork or branch
repository: ReactionMechanismGenerator/RMG-Py
ref: main
ref: ${{ env.RMG_PY_BRANCH }}

# configures the mamba environment manager and builds the environment
- name: Setup Mambaforge Python 3.7
Expand All @@ -124,6 +120,10 @@ jobs:
mamba info
mamba list
# Clone RMG-database
- name: Clone RMG-database
uses: actions/checkout@v3

# modify env variables as directed in the RMG installation instructions
- name: Set Environment Variables
run: |
Expand Down

0 comments on commit 04beb6f

Please sign in to comment.