Rework of LS to use FungibleAsset instead of Coin #29
This file contains hidden or 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
name: Tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
- master | |
- releases-v* | |
tags: | |
- v* | |
jobs: | |
tests: | |
name: Test | |
runs-on: ubuntu-22.04 | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Get Aptos | |
uses: pontem-network/get-aptos@main | |
with: | |
version: latest | |
token: ${{ secrets.GITHUB_TOKEN }} | |
prover: true | |
- name: Build | |
run: aptos move compile | |
- name: Test Liquidswap | |
run: aptos move test |