Skip to content

A0-2819: Add farming contract and basic unit tests. #115

A0-2819: Add farming contract and basic unit tests.

A0-2819: Add farming contract and basic unit tests. #115

Workflow file for this run

name: PR checks
on:
pull_request:
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout the source code
uses: actions/checkout@v3
- name: Cache Crates
uses: actions/cache@v3
with:
path: ~/.cargo
key: ${{ runner.os }}-rust-${{ hashFiles('rust-toolchain.toml') }}
restore-keys: |
${{ runner.os }}-rust
- name: Rust checks
run: make check-all-dockerized