renamed existing deploy workflows. added testing workflow

This commit is contained in:
2025-11-09 21:07:59 +01:00
parent 6d2f76eb72
commit 303309fff9
3 changed files with 23 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
name: Docker
name: Deploy Docker Image to Github Container Registry
on:
push:

View File

@@ -1,4 +1,4 @@
name: Rust
name: Deploy Rust to Crates.io
on:
push:

21
.github/workflows/rust_test.yml vendored Normal file
View File

@@ -0,0 +1,21 @@
name: Test Rust
on:
push:
branches: ["develop"]
pull_request:
branches: ["main", "develop"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose