Compare commits
2 Commits
6d2f76eb72
...
develop
| Author | SHA1 | Date | |
|---|---|---|---|
| bb82dad4cf | |||
| 303309fff9 |
@@ -1,4 +1,4 @@
|
|||||||
name: Docker
|
name: Deploy Docker Image to Github Container Registry
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
name: Rust
|
name: Deploy Rust to Crates.io
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
27
.github/workflows/rust_test.yml
vendored
Normal file
27
.github/workflows/rust_test.yml
vendored
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
name: Test Rust
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: ["main", "develop"]
|
||||||
|
paths:
|
||||||
|
- "./src/**"
|
||||||
|
- "./Cargo.toml"
|
||||||
|
pull_request:
|
||||||
|
branches: ["main", "develop"]
|
||||||
|
paths:
|
||||||
|
- "./src/**"
|
||||||
|
- "./Cargo.toml"
|
||||||
|
|
||||||
|
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
|
||||||
Reference in New Issue
Block a user