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 22:19:54 -07:00
|
|
|
image: cimg/rust:1.85-node
|
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
|
2025-03-28 00:36:38 -07:00
|
|
|
# without warnings. the examples are run as tests, because we've configured
|
|
|
|
# each example target with `test = true` and `harness = false` in Cargo.toml
|
2025-03-06 22:24:52 -08:00
|
|
|
test:
|
|
|
|
runs-on: docker
|
2025-03-07 01:25:30 -08:00
|
|
|
container:
|
2025-03-27 22:19:54 -07:00
|
|
|
image: cimg/rust:1.85-node
|
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-28 00:36:38 -07:00
|
|
|
- run: RUSTFLAGS='-D warnings' cargo test
|