Skip to content

Remove build.rs

Remove build.rs #316

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
- 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
- run: cargo install --locked --version ~0.18 trunk
- working_directory: ./client

Check failure on line 28 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 28, Col: 9): Unexpected value 'working_directory'
run: trunk build --release
- run: cargo install --path .