Skip to content

Introducing changes to allow for sync to compile #35

Introducing changes to allow for sync to compile

Introducing changes to allow for sync to compile #35

Workflow file for this run

name: PR Validator
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Format check
run: cargo fmt -- --check
- name: Build and Lint
run: cargo clippy --tests -- -D warnings
- name: Run tests
run: cargo test --verbose