Skip to content

chore: updated near-sdk to 5.1.0 #44

chore: updated near-sdk to 5.1.0

chore: updated near-sdk to 5.1.0 #44

Workflow file for this run

name: Test
on:
pull_request:
branches: [ main, dev ]
env:
CARGO_TERM_COLOR: always
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Lint
run: make lint
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build
run: make build
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Unit tests
run: make test
integration-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Integration tests
run: make integration