Add CI #1
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
# This workflow will install Claudia after installing Python dependencies, installs rippled ailding-and-testing-python | |
name: Claudia | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install flake8 pytest | |
if [ -f ./src/claudia/requirements.txt ]; then pip install -r ./src/claudia/requirements.txt; fi | |
- name: Install Claudia locally | |
run: | | |
python3 setup.py sdist bdist_wheel | |
pip install dist/*.tar.gz | |
rm -fr build/ dist/ claudia.egg-info | |
claudia | |
- name: Install rippled with Claudia | |
run: | | |
claudia rippled install --rippled_branch master | |
- name: Launch network with Claudia | |
run: | | |
claudia local-mainnet start |