toolkit for mdBook [mirror of my GitHub repo] docs.tonywu.dev/mdbookkit/
permalinks rust-analyzer mdbook
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: update workflows

Tony Wu 7f351e88 b691fc2f

+8 -7
+6 -2
.github/workflows/bin.yml
··· 38 38 - aarch64-pc-windows-msvc 39 39 - x86_64-pc-windows-msvc 40 40 41 - # only linux builds unless release 42 41 release: 43 - - ${{github.event_name == 'release' || github.event_name == 'workflow_dispatch'}} 42 + - ${{github.event_name == 'release'}} 43 + manual: 44 + - ${{github.event_name == 'workflow_dispatch'}} 44 45 45 46 exclude: 46 47 - release: false 47 48 target: aarch64-apple-darwin 48 49 - release: false 49 50 target: x86_64-apple-darwin 51 + 50 52 - release: false 53 + manual: false 51 54 target: aarch64-pc-windows-msvc 52 55 - release: false 56 + manual: false 53 57 target: x86_64-pc-windows-msvc 54 58 55 59 runs-on: ${{ contains(matrix.target, '-linux-') && 'ubuntu-latest' || contains(matrix.target, '-apple-') && 'macos-latest' || 'windows-latest' }}
+2 -5
.github/workflows/ci.yml
··· 94 94 - name: Test 95 95 run: cargo test --no-fail-fast -- --include-ignored 96 96 97 - outputs: 98 - cache-primary-key: ${{steps.cache.outputs.primary-key}} 99 - cache-restore-key: ${{steps.cache.outputs.restore-key}} 100 - cache-path: ${{steps.cache.outputs.path}} 101 - 102 97 test_rustdoc_link_ra: 103 98 name: (rustdoc-link) Test RA 104 99 105 100 needs: 106 101 - test 102 + 103 + if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' 107 104 108 105 strategy: 109 106 matrix: