Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: boardgamers/clash
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.1.2
Choose a base ref
...
head repository: boardgamers/clash
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Loading
Showing 567 changed files with 137,346 additions and 31,907 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -35,9 +35,6 @@ jobs:
- name: Format server
working-directory: ./server
run: cargo fmt --check
- name: Run cargo audit server
working-directory: ./server
run: cargo audit
- name: Build client
working-directory: ./client
run: cargo build
@@ -50,6 +47,3 @@ jobs:
- name: Format client
working-directory: ./client
run: cargo fmt --check
- name: Run cargo audit client
working-directory: ./client
run: cargo audit
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Server - Release
name: Release

on:
release:
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@

- `cd server`
- `cargo install wasm-pack` (if you haven't already)
- `./build-wasm.sh`
- `./build-remote-server.sh`

# Notes

3 changes: 3 additions & 0 deletions client/.rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[toolchain]
channel = "stable"
targets = [ "wasm32-unknown-unknown" ]
Loading