Adapt to latest FMS update and have an option to install DA-utils #78
Workflow file for this run
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: JEDI Bundle Clone Test | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
buildbundle: | |
name: Clone oops bundle | |
runs-on: ubuntu-latest | |
steps: | |
# Setup Python | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.9 | |
# Clone the code repo | |
- name: Clone code repo | |
uses: actions/checkout@v4 | |
with: | |
lfs: true | |
# Install package | |
- name: Install JEDI bundle and dependencies | |
run: python -m pip install --use-deprecated=legacy-resolver -r requirements.txt --user . | |
- name: Put executables in the path | |
run: echo "$HOME/.local/bin" >> $GITHUB_PATH | |
# Run an application test | |
- name: Run JEDI Bundle application test | |
run: jedi_bundle Clone src/jedi_bundle/config/build.yaml | |
# Confirm existence of expected file | |
- name: Check | |
run: ls -l jedi_bundle/oops/CMakeLists.txt |