diff --git a/.forgejo/run-examples/action.yaml b/.forgejo/run-examples/action.yaml new file mode 100644 index 0000000..815e936 --- /dev/null +++ b/.forgejo/run-examples/action.yaml @@ -0,0 +1,12 @@ +# run all Cargo examples, as described here: +# +# Karol Kuczmarski. "Add examples to your Rust libraries" +# http://xion.io/post/code/rust-examples.html +# +runs: + using: "composite" + steps: + - run: cd app-proto; cargo run --example irisawa-hexlet + - run: cd app-proto; cargo run --example three-spheres + - run: cd app-proto; cargo run --example point-on-sphere + - run: cd app-proto; cargo run --example kaleidocycle \ No newline at end of file diff --git a/.forgejo/setup-rust/action.yaml b/.forgejo/setup-rust/action.yaml new file mode 100644 index 0000000..6960dc4 --- /dev/null +++ b/.forgejo/setup-rust/action.yaml @@ -0,0 +1,10 @@ +# set up the Rust toolchain. based on David Tolnay's more general +# `rust-toolchain` action for GitHub +# +# https://github.com/dtolnay/rust-toolchain +# +runs: + using: "composite" + steps: + - run: curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused --location --silent --show-error --fail 'https://sh.rustup.rs' | sh -s -- -y --profile minimal + - run: echo $HOME/.cargo/bin >> $GITHUB_PATH \ No newline at end of file diff --git a/.forgejo/workflows/continuous-integration.yaml b/.forgejo/workflows/continuous-integration.yaml new file mode 100644 index 0000000..f821b1d --- /dev/null +++ b/.forgejo/workflows/continuous-integration.yaml @@ -0,0 +1,25 @@ +on: + pull_request: + push: + branches: [main] +jobs: + build: + runs-on: docker + steps: + - uses: https://code.forgejo.org/actions/checkout@v4 + - uses: ./.forgejo/setup-rust + - run: rustup target add wasm32-unknown-unknown + - run: cargo install trunk + - run: cd app-proto; trunk build + test: + runs-on: docker + steps: + - uses: https://code.forgejo.org/actions/checkout@v4 + - uses: ./.forgejo/setup-rust + - run: cd app-proto; cargo test + run-examples: + runs-on: docker + steps: + - uses: https://code.forgejo.org/actions/checkout@v4 + - uses: ./.forgejo/setup-rust + - uses: ./.forgejo/run-examples \ No newline at end of file