Skip to content

Improve new struct system by using Generics #133

Improve new struct system by using Generics

Improve new struct system by using Generics #133

Workflow file for this run

name: CI
on: [push]
jobs:
auto-tests:
name: Pytest Tests
runs-on: ubuntu-20.04
timeout-minutes: 10
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v5
- uses: actions/cache@v3
name: Cache venv
with:
path: ./.venv
key: venv-${{ hashFiles('uv.lock') }}
- name: Install with dev
run: uv sync
- name: Run simple tests
run: |
uv run \
pytest \
tests/test_libre_dex.py \
tests/test_sugar.py
- name: Run end to end tests
run: |
uv run \
pytest tests/test_token.py
uv run \
pytest tests/test_testcontract.py