2025-03-06 22:24:52 -08:00
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
branches: [main]
|
|
|
|
jobs:
|
2025-03-07 01:25:30 -08:00
|
|
|
# build the application, reporting success if the build completes
|
2025-03-06 22:24:52 -08:00
|
|
|
build:
|
|
|
|
runs-on: docker
|
2025-03-07 01:25:30 -08:00
|
|
|
container:
|
|
|
|
image: dyna3:ci
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
working-directory: app-proto
|
2025-03-06 22:24:52 -08:00
|
|
|
steps:
|
|
|
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
2025-03-07 01:25:30 -08:00
|
|
|
- run: trunk build
|
|
|
|
|
|
|
|
# run the automated tests, reporting success if the tests pass
|
2025-03-06 22:24:52 -08:00
|
|
|
test:
|
|
|
|
runs-on: docker
|
2025-03-07 01:25:30 -08:00
|
|
|
container:
|
|
|
|
image: dyna3:ci
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
working-directory: app-proto
|
2025-03-06 22:24:52 -08:00
|
|
|
steps:
|
|
|
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
2025-03-07 01:25:30 -08:00
|
|
|
- run: cargo test
|
|
|
|
|
|
|
|
# run the Cargo examples, as described here:
|
|
|
|
#
|
|
|
|
# Karol Kuczmarski. "Add examples to your Rust libraries"
|
|
|
|
# http://xion.io/post/code/rust-examples.html
|
|
|
|
#
|
|
|
|
# report success if the examples build and run without errors
|
2025-03-06 22:24:52 -08:00
|
|
|
run-examples:
|
|
|
|
runs-on: docker
|
2025-03-07 01:25:30 -08:00
|
|
|
container:
|
|
|
|
image: dyna3:ci
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
working-directory: app-proto
|
2025-03-06 22:24:52 -08:00
|
|
|
steps:
|
|
|
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
2025-03-07 01:25:30 -08:00
|
|
|
- run: cargo run --example irisawa-hexlet
|
|
|
|
- run: cargo run --example three-spheres
|
|
|
|
- run: cargo run --example point-on-sphere
|
|
|
|
- run: cargo run --example kaleidocycle
|