Skip to content

Use atomics instead of channel to return results #38

Use atomics instead of channel to return results

Use atomics instead of channel to return results #38

Workflow file for this run

name: Checks
on:
push:
branches: main
pull_request:
branches: main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Check code formatting is consistent
run: cargo fmt --check
- name: Lint code
run: cargo clippy -- --deny warnings
- name: Run all tests
run: cargo test