Skip to content

Docker images and static binaries #3

Docker images and static binaries

Docker images and static binaries #3

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches:
- 'master'
jobs:
test:
name: Check formatting and run unit tests
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt, clippy
- name: Check formatting
run: cargo fmt --check
- name: Run tests
run: NO_SOLC_BUILD=1 cargo test