Remove build.rs #319
Workflow file for this run
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
name: CI | |
on: push | |
jobs: | |
formatting: | |
name: Formatting | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
dir: [., ./client, ./common] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
components: rustfmt | |
- name: Check formatting | |
run: cargo fmt --check --manifest-path ${{ matrix.dir }}/Cargo.toml | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
targets: wasm32-unknown-unknown | |
- name: Install trunk | |
run: cargo install --locked --version ~0.18 trunk | |
- name: Compile the client | |
working-directory: ./client | |
run: trunk build --release | |
- name: Install rtpeeker | |
run: cargo install --locked --path . | |
# TODO: add clippy check and tests |