lychee-client/.gitea/workflows/build_and_test.yml
Louis Vallat b3ca342a19
All checks were successful
Build and test Rust binary in release mode / Build and test (push) Successful in 43s
feat: moved to gitea workflows for CI/CD
Signed-off-by: Louis Vallat <contact@louis-vallat.dev>
2024-09-08 18:00:43 +02:00

17 lines
337 B
YAML

name: "Build and test Rust binary in release mode"
on: push
jobs:
build:
name: "Build and test"
runs-on: rust-bookworm
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Build
run: |
cargo build --release
- name: Test
run: |
cargo test