Skip to content

Concurrency Updates and version bump to 1.0.8 (#16) #39

Concurrency Updates and version bump to 1.0.8 (#16)

Concurrency Updates and version bump to 1.0.8 (#16) #39

Workflow file for this run

name: Build tests
on:
push:
branches: '**'
env:
CARGO_TERM_COLOR: always
jobs:
format:
runs-on:
- ubuntu-latest
if: github.event_name == 'push'
name: Check format
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Run Format
run: cargo fmt --all -- --check
clippy:
runs-on:
- ubuntu-latest
if: github.event_name == 'push'
name: Run clippy
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Run Clippy
run: cargo clippy -- -Dwarnings
# tarpaulin:
# name: Run tarpaulin
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - name: Build
# run: cargo build --verbose
# - name: Install toolchain
# uses: actions-rs/toolchain@v1
# with:
# toolchain: stable
# override: true
# - name: Run tarpaulin
# uses: actions-rs/tarpaulin@v0.1
# with:
# version: '0.15.0'
# args: '-- --test-threads 1'