Files
ingey/.gitea/workflows/test.yaml
2026-04-02 20:57:41 +10:30

19 lines
546 B
YAML

name: test
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
lfs: true
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
# Build webassembly module
- run: cargo add cargo-component
- run: cargo component build --target wasm32-unknown-unknown --release -p move-money-dynamic
# Limit to one test at a time as the CI infrastructure struggles if trying to start too many containers at once
- run: cargo test --release