Code Monkey home page Code Monkey logo

indexer-tx-watcher-example-lake's People

Contributors

jon-lewis avatar khorolets avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

indexer-tx-watcher-example-lake's Issues

Add testing to repo

Hello!

A month ago or so I added a mail-cron to near-examples that checks the test results for all repos there. This in order to make sure examples still work when dependencies are upgraded by dependabot.

As such the aim is for repos to have some testing in place.

My question for you
Could you please add some tests to: https://github.com/near-examples/indexer-tx-watcher-example-lake? This helps make sure the code in the repo keeps working through time, and also sets a good example for visitors on how they should test their code :)

Here's an example GitHub Actions "test.yaml" file from another repo with testing (from project root /.github/workflows/test.yaml):

name: CI
on: 
  repository_dispatch:
    types: [tests-report]
  push:
jobs:
  test:
    runs-on: ubuntu-latest
    env:
      RUST_BACKTRACE: 1
    steps:
      - name: Checkout Code
        uses: actions/checkout@v2

      - name: Install Rust
        uses: actions-rs/toolchain@v1
        with:
          toolchain: stable-2020-10-08
          target: wasm32-unknown-unknown

      - name: Add wasm32 target
        run: rustup target add wasm32-unknown-unknown

      - name: Check that build works
        run: ./build.sh
        # TODO: check that files in `res` are unchanged

      - name: Test
        uses: actions-rs/cargo@v1
        with:
          command: test

The repository_dispatch key-value pair allows for the cron to remotely trigger the tests in this repo.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.