Skip to content

examples: fix wrong comment in praeludium organ-piano example #23

examples: fix wrong comment in praeludium organ-piano example

examples: fix wrong comment in praeludium organ-piano example #23

Workflow file for this run

name: Cargo checks
on: push
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: actions-rs/cargo@v1
with:
command: test
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: clippy
override: true
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}