Double-box closures to avoid nightly trait object stuff #17
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| # Delete whichever of these you aren't using. | |
| - master | |
| jobs: | |
| # Jobs go here. Most of is article is about things | |
| # to put in this section. | |
| build-macos: | |
| name: "Build on macOS" | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Install latest nightly | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: nightly | |
| override: true | |
| # components: rustfmt, clippy | |
| - run: cargo check | |