2025-03-06 22:24:52 -08:00
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
branches: [main]
|
|
|
|
jobs:
|
2025-03-08 11:11:01 -08:00
|
|
|
# build the application, reporting success if there are no errors or warnings
|
2025-03-06 22:24:52 -08:00
|
|
|
build:
|
|
|
|
runs-on: docker
|
2025-03-07 01:25:30 -08:00
|
|
|
container:
|
2025-03-27 20:46:02 -07:00
|
|
|
image: rust:1.85-bookworm
|
2025-03-07 01:25:30 -08:00
|
|
|
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-27 20:46:02 -07:00
|
|
|
- uses: ./.forgejo/setup-trunk
|
2025-03-08 11:11:01 -08:00
|
|
|
- run: RUSTFLAGS='-D warnings' trunk build
|
2025-03-07 01:25:30 -08:00
|
|
|
|
2025-03-08 11:11:01 -08:00
|
|
|
# run the automated tests, reporting success if the tests pass and were built
|
|
|
|
# without warnings
|
2025-03-06 22:24:52 -08:00
|
|
|
test:
|
|
|
|
runs-on: docker
|
2025-03-07 01:25:30 -08:00
|
|
|
container:
|
2025-03-27 20:46:02 -07:00
|
|
|
image: rust:1.85-bookworm
|
2025-03-07 01:25:30 -08:00
|
|
|
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-08 11:11:01 -08:00
|
|
|
- run: RUSTFLAGS='-D warnings' cargo test
|
2025-03-07 01:25:30 -08:00
|
|
|
|
|
|
|
# run the Cargo examples, as described here:
|
|
|
|
#
|
|
|
|
# Karol Kuczmarski. "Add examples to your Rust libraries"
|
|
|
|
# http://xion.io/post/code/rust-examples.html
|
|
|
|
#
|
2025-03-08 11:11:01 -08:00
|
|
|
# report success if the examples build and run without errors or warnings
|
2025-03-06 22:24:52 -08:00
|
|
|
run-examples:
|
|
|
|
runs-on: docker
|
2025-03-07 01:25:30 -08:00
|
|
|
container:
|
2025-03-27 20:46:02 -07:00
|
|
|
image: rust:1.85-bookworm
|
2025-03-07 01:25:30 -08:00
|
|
|
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-08 11:11:01 -08:00
|
|
|
- run: RUSTFLAGS='-D warnings' cargo run --example irisawa-hexlet
|
|
|
|
- run: RUSTFLAGS='-D warnings' cargo run --example three-spheres
|
|
|
|
- run: RUSTFLAGS='-D warnings' cargo run --example point-on-sphere
|
|
|
|
- run: RUSTFLAGS='-D warnings' cargo run --example kaleidocycle
|