Merge pull request #6 from RaspberryProgramming/build-test-artifact-workflow
Build test artifact workflow
This commit is contained in:
commit
0cc94ec48a
|
|
@ -1,4 +1,4 @@
|
|||
name: Docker Image CI
|
||||
name: Build and Publish Docker Image
|
||||
|
||||
on:
|
||||
push:
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
name: Rust
|
||||
name: Build and Test Rust
|
||||
|
||||
on:
|
||||
push:
|
||||
|
|
@ -24,6 +24,12 @@ jobs:
|
|||
toolchain: nightly
|
||||
override: true
|
||||
- name: Build
|
||||
run: cargo build --verbose
|
||||
run: cargo build --release --verbose
|
||||
- name: Run tests
|
||||
run: cargo test --verbose
|
||||
run: cargo test --release --verbose
|
||||
- name: Upload a Build Artifact
|
||||
uses: actions/upload-artifact@v4.3.4
|
||||
with:
|
||||
name: linux-build
|
||||
path: target/release/request-mirror
|
||||
|
||||
|
|
@ -1,9 +1,9 @@
|
|||
# Request Mirror
|
||||
This application provides a web ui for sending get/post requests and provides a visual ui for looking at what the application received. This is written in rust.
|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## TODO:
|
||||
- Update Readme
|
||||
|
|
|
|||
Loading…
Reference in New Issue