Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Build WASM Library
on: [push, pull_request]

jobs:
build:
build-wasm:
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -19,3 +19,15 @@ jobs:

- name: Build library
run: wasm-pack build --scope libresplit --target web --release --features wasm

build-c:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up Rust toolchain
uses: dtolnay/rust-toolchain@stable

- name: Build library
run: cargo build --release
Loading