move version #209
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
| on: | |
| push: | |
| branch: | |
| - 'main' | |
| name: CI eval macos build | |
| env: | |
| RUSTFLAGS: --cfg=web_sys_unstable_apis | |
| jobs: | |
| macosbuild: | |
| name: Macos Build | |
| runs-on: macos-latest | |
| permissions: write-all | |
| strategy: | |
| fail-fast: false | |
| steps: | |
| - name: Install latest stable | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: stable | |
| override: true | |
| components: rustfmt, clippy | |
| - name: Installing needed macos dependencies | |
| run: | | |
| brew update | |
| brew install jack | |
| - uses: actions/checkout@v2 | |
| with: | |
| submodules: recursive | |
| - name: Cache rust compilations | |
| uses: actions/cache@v3 | |
| with: | |
| path: | | |
| ~/.cargo | |
| target | |
| key: ${{ runner.os }}-cargo | |
| - name: Run cargo check | |
| uses: actions-rs/cargo@v1 | |
| with: | |
| command: build | |
| args: --release | |
| - id: display-build-files | |
| name: display build files | |
| run: | | |
| ls -alR . | |