hyperware_process_lib 3.0.0

A library for writing Hyperware processes in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
name: Rustfmt

on: push

jobs:
  format:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - uses: dtolnay/rust-toolchain@nightly
        with:
          components: rustfmt
      - uses: mbrobbel/rustfmt-check@master
        with:
          token: ${{ secrets.GITHUB_TOKEN }}