Skip to content

Commit

Permalink
Debug workflow attempt.
Browse files Browse the repository at this point in the history
  • Loading branch information
lsoucasse committed Jun 4, 2024
1 parent a79e607 commit 108c856
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ on:
branches: [ "master", "testing" ]
pull_request:
branches: [ "master" ]
workflow_dispatch:

jobs:
test:
Expand All @@ -16,27 +15,30 @@ jobs:
python-version: ['3.10', '3.11', '3.12']

steps:
- name: Checkout SOCRATES and JANUS
- uses: actions/checkout@v4

- name: Get SOCRATES
uses: actions/checkout@v4
with:
repository: FormingWorlds/SOCRATES
repository: 'FormingWorlds/SOCRATES'
path: 'SOCRATES'

- name: build SOCRATES
- name: Build SOCRATES
run: |
export LD_LIBRARY_PATH=""
cd SOCRATES
./configure
./build_code
source set_rad_env
cd ..
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Build Janus
- name: Build JANUS
run: |
cd ../JANUS
pip install -e .
- name: Test with pytest
Expand Down

0 comments on commit 108c856

Please sign in to comment.