Skip to content

Commit

Permalink
update: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
olivmath committed Feb 1, 2024
1 parent 0b843e6 commit 0074f01
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,24 +23,32 @@ jobs:

steps:
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install -e .
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: "18"

- name: Set up Rust
uses: actions-rs/toolchain@v1

- name: Install Node.js dependencies
run: |
cd test/merkletreejs
yarn install
- name: Test with pytest
run: |
pytest -m "not benchmark" -vv
pytest -m "not benchmark" -vv

0 comments on commit 0074f01

Please sign in to comment.