2025-03-06 22:24:52 -08:00
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
branches: [main]
|
|
|
|
jobs:
|
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
|
2025-03-28 12:30:02 -07:00
|
|
|
# each example target with `test = true` and `harness = false` in Cargo.toml.
|
|
|
|
# Trunk build failures caused by problems outside the Rust source code, like
|
|
|
|
# missing assets, should be caught by `trunk_build_test`
|
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:
|
2025-04-02 12:06:01 -07:00
|
|
|
# set the default working directory for each `run` step, relative to the
|
|
|
|
# workspace directory. this default only affects `run` steps (and if we
|
|
|
|
# tried to set the `working-directory` label for any other kind of step,
|
|
|
|
# it wouldn't be recognized anyway)
|
2025-03-07 01:25:30 -08:00
|
|
|
working-directory: app-proto
|
2025-03-06 22:24:52 -08:00
|
|
|
steps:
|
2025-04-02 13:20:34 -07:00
|
|
|
# Check out the repository so that its top-level directory is the
|
|
|
|
# workspace directory (action variable `github.workspace`, environment
|
|
|
|
# variable `$GITHUB_WORKSPACE`):
|
2025-03-06 22:24:52 -08:00
|
|
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
2025-04-02 12:06:01 -07:00
|
|
|
|
2025-03-28 12:30:02 -07:00
|
|
|
- uses: ./.forgejo/setup-trunk
|
2025-03-28 00:36:38 -07:00
|
|
|
- run: RUSTFLAGS='-D warnings' cargo test
|