update docs #13
This file contains 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: komodefi-cli | |
on: [push] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
env: | |
BRANCH_NAME: ${{ github.head_ref || github.ref_name }} | |
jobs: | |
code-check: | |
timeout-minutes: 60 | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: pre scripts for ci container | |
run: | | |
git config --global --add safe.directory /__w/komodo-defi-framework/komodo-defi-framework | |
echo "/bin" >> $GITHUB_PATH | |
echo "/usr/bin" >> $GITHUB_PATH | |
echo "/root/.cargo/bin" >> $GITHUB_PATH | |
- name: Calculate commit hash for PR commit | |
if: github.event_name == 'pull_request' | |
run: echo "COMMIT_HASH=$(git rev-parse --short=7 ${{ github.event.pull_request.head.sha }})" >> $GITHUB_ENV | |
- name: Calculate commit hash for merge commit | |
if: github.event_name != 'pull_request' | |
run: echo "COMMIT_HASH=$(git rev-parse --short=7 HEAD)" >> $GITHUB_ENV | |
- name: Cargo cache | |
uses: ./.github/actions/cargo-cache | |
- name: Start checking code format and lint | |
run: | | |
cargo fmt --manifest-path ./mm2src/komodefi_cli/Cargo.toml --all -- --check | |
cargo clippy --manifest-path ./mm2src/komodefi_cli/Cargo.toml --all-targets --all-features -- --D warnings | |
test: | |
timeout-minutes: 60 | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: pre scripts for ci container | |
run: | | |
git config --global --add safe.directory /__w/komodo-defi-framework/komodo-defi-framework | |
echo "/bin" >> $GITHUB_PATH | |
echo "/usr/bin" >> $GITHUB_PATH | |
echo "/root/.cargo/bin" >> $GITHUB_PATH | |
- name: Calculate commit hash for PR commit | |
if: github.event_name == 'pull_request' | |
run: echo "COMMIT_HASH=$(git rev-parse --short=7 ${{ github.event.pull_request.head.sha }})" >> $GITHUB_ENV | |
- name: Calculate commit hash for merge commit | |
if: github.event_name != 'pull_request' | |
run: echo "COMMIT_HASH=$(git rev-parse --short=7 HEAD)" >> $GITHUB_ENV | |
- name: Cargo cache | |
uses: ./.github/actions/cargo-cache | |
- name: Start testing | |
run: | | |
cargo test --manifest-path ./mm2src/komodefi_cli/Cargo.toml --no-fail-fast | |
build: | |
timeout-minutes: 60 | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: pre scripts for ci container | |
run: | | |
git config --global --add safe.directory /__w/komodo-defi-framework/komodo-defi-framework | |
echo "/bin" >> $GITHUB_PATH | |
echo "/usr/bin" >> $GITHUB_PATH | |
echo "/root/.cargo/bin" >> $GITHUB_PATH | |
- name: Calculate commit hash for PR commit | |
if: github.event_name == 'pull_request' | |
run: echo "COMMIT_HASH=$(git rev-parse --short=7 ${{ github.event.pull_request.head.sha }})" >> $GITHUB_ENV | |
- name: Calculate commit hash for merge commit | |
if: github.event_name != 'pull_request' | |
run: echo "COMMIT_HASH=$(git rev-parse --short=7 HEAD)" >> $GITHUB_ENV | |
- name: Cargo cache | |
uses: ./.github/actions/cargo-cache | |
- name: Start building | |
run: | | |
cargo build --manifest-path ./mm2src/komodefi_cli/Cargo.toml |