- Add CurveSwapStructEncoder and tests - Add CurveSwapExecutorExposed and tests - Add needed interfaces #time 0m #time 0m #time 0m
33 lines
611 B
YAML
33 lines
611 B
YAML
name: Swap encoders CI
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
|
|
env:
|
|
PYTEST_ADDOPTS: "--color=yes"
|
|
|
|
jobs:
|
|
tests:
|
|
uses: propeller-heads/propeller-protocol-lib/.github/workflows/python-tests.yaml@main
|
|
|
|
formatting:
|
|
name: Formatting
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 15
|
|
steps:
|
|
- name: Check out Repo
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Setup Env
|
|
uses: ./.github/actions/setup_env
|
|
|
|
- name: Black Formatting
|
|
run: |
|
|
black ./propeller-swap-encoders --check --skip-magic-trailing-comma
|