fbas_analyzer 0.7.4

Library and tools for analyzing FBASs like the Stellar network
Documentation
name: Build

on:
  push:
    branches:
      - master
  pull_request:
    branches:
      - master

env:
  CARGO_TERM_COLOR: always

jobs:
  run_all_tests:

    runs-on: ubuntu-latest
    steps:
    
      - name: Checkout source code
        uses: actions/checkout@v2

      - name: ⚙ Install stable toolchain
        uses: actions-rs/toolchain@v1
        with:
          profile: minimal
          toolchain: stable
          override: true

      - name: 🔎 Run all tests
        run: |
          chmod +x ./scripts/tests.py
          ./scripts/tests.py
        shell: bash