Skip to content

Remove build.rs

Remove build.rs #319

Workflow file for this run

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