Skip to content

feat: update SorobanFixedPoint interface to prevent excess clone calls #2

feat: update SorobanFixedPoint interface to prevent excess clone calls

feat: update SorobanFixedPoint interface to prevent excess clone calls #2

Workflow file for this run

name: pull_request
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
complete:
if: always()
needs: [fmt, build-and-test]
runs-on: ubuntu-latest
steps:
- if: contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')
run: exit 1
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: rustup update
- run: cargo fmt --all --check
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: rustup update
- run: cargo build
- run: cargo test