metallibruh/.gitea/workflows/build.yml
Louis Vallat 436e77483f
Some checks failed
Build Rust binary in release mode / build (push) Failing after 5s
feat: moved to gitea workflows for CI/CD
Signed-off-by: Louis Vallat <contact@louis-vallat.dev>
2024-09-08 15:46:45 +02:00

25 lines
721 B
YAML

name: "Build Rust binary in release mode"
on: push
jobs:
build:
name: "build"
runs-on: rust-bookworm
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Compile binary in release mode
run: |
cargo build --release
- name: Run with lyrics from Hotel California
run: |
echo "$HOTEL_CALIFORNIA_LYRICS" > /tmp/input
cat /tmp/input
echo "CAT FINISHED"
echo "$HOTEL_CALIFORNIA_LYRICS"
cargo run --release -- /tmp/input
- name: Run with lyrics from The Unforgiven
run: |
printf "%s" "$THE_UNFORGIVEN_LYRICS" > /tmp/input
cargo run --release -- /tmp/input