forked from StudioInfinity/dyna3
31 lines
No EOL
925 B
YAML
31 lines
No EOL
925 B
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. the examples are run as tests, because we've configured
|
|
# each example target with `test = true` and `harness = false` in Cargo.toml
|
|
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 |