Remove empty_docs workaround now that 1.79 is released (#520) #549
This file contains 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, pull_request] | |
name: build | |
jobs: | |
build: | |
name: build (${{ matrix.toolchain }}) | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
toolchain: [stable, nightly] | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v2 | |
- name: Install toolchain | |
id: toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: ${{ matrix.toolchain }} | |
target: wasm32-unknown-unknown | |
override: true | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Update Dependencies | |
uses: actions-rs/cargo@v1 | |
with: | |
command: update | |
- name: Cache dependencies | |
env: | |
rustc-hash: ${{ steps.toolchain.outputs.rustc_hash }} | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
target | |
key: ${{ runner.os }}-cargo-${{ env.rustc-hash }}-${{ hashFiles('**/Cargo.lock') }} |