dyna3/.forgejo/workflows/continuous-integration.yaml
Aaron Fenyes 7f45e98b46
All checks were successful
/ build (pull_request) Successful in 2m24s
/ test (pull_request) Successful in 1m8s
/ run-examples (pull_request) Successful in 1m3s
Switch to CircleCI's Rust + Node container image
This should make the `checkout` work on the runner host.
2025-03-27 22:19:54 -07:00

50 lines
No EOL
1.5 KiB
YAML

on:
pull_request:
push:
branches: [main]
jobs:
# build the application, reporting success if there are no errors or warnings
build:
runs-on: docker
container:
image: cimg/rust:1.85-node
defaults:
run:
working-directory: app-proto
steps:
- uses: https://code.forgejo.org/actions/checkout@v4
- uses: ./.forgejo/setup-trunk
- run: RUSTFLAGS='-D warnings' trunk build
# run the automated tests, reporting success if the tests pass and were built
# without warnings
test:
runs-on: docker
container:
image: cimg/rust:1.85-node
defaults:
run:
working-directory: app-proto
steps:
- uses: https://code.forgejo.org/actions/checkout@v4
- run: RUSTFLAGS='-D warnings' 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 or warnings
run-examples:
runs-on: docker
container:
image: cimg/rust:1.85-node
defaults:
run:
working-directory: app-proto
steps:
- uses: https://code.forgejo.org/actions/checkout@v4
- 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