-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat(actions): Impled github actions for PR checking * chore(tests): Impled mock for rabbit unit tests * chore(pr): Fixed fmt warnings --------- Co-authored-by: Bread White <breadrock1@email.net>
- Loading branch information
1 parent
0846e3d
commit e4d7959
Showing
5 changed files
with
122 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
name: Pull Request Actions | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
pull_request: | ||
branches: | ||
- master | ||
types: | ||
- opened | ||
- reopened | ||
- synchronize | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Build | ||
run: cargo build --verbose | ||
|
||
fmt: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Fmt | ||
run: cargo fmt --all --verbose --check | ||
|
||
clippy: | ||
runs-on: ubuntu-latest | ||
permissions: write-all | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install clippy | ||
run: rustup component add clippy | ||
- uses: actions-rs/clippy-check@v1 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
args: --all-features | ||
|
||
test: | ||
needs: [build, clippy, fmt] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Test | ||
run: cargo test --all --verbose | ||
|
||
build-platforms: | ||
if: github.event_name == 'push' | ||
strategy: | ||
matrix: | ||
platform: | ||
- os-name: Linux-x86_64 | ||
runs-on: ubuntu-20.04 | ||
target: x86_64-unknown-linux-gnu | ||
|
||
- os-name: Windows-x86_64 | ||
runs-on: windows-latest | ||
target: x86_64-pc-windows-msvc | ||
|
||
- os-name: macOS-x86_64 | ||
runs-on: macOS-latest | ||
target: x86_64-apple-darwin | ||
|
||
runs-on: ${{ matrix.platform.runs-on }} | ||
permissions: write-all | ||
needs: [test] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
with: | ||
target: ${{ matrix.platform.target }} | ||
- name: Add rustup target ${{ matrix.platform.target }} | ||
run: rustup target add ${{ matrix.platform.target }} | ||
- name: Build app for ${{matrix.platform.target }} | ||
run: cargo build --release --target ${{ matrix.platform.target }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
use news_rss::publish::models::PublishNews; | ||
use news_rss::publish::rabbit::config::RabbitConfig; | ||
use news_rss::publish::Publisher; | ||
use news_rss::ServiceConnect; | ||
|
||
pub struct MockRabbitPublisher {} | ||
|
||
#[async_trait::async_trait] | ||
impl ServiceConnect for MockRabbitPublisher { | ||
type Config = RabbitConfig; | ||
type Error = anyhow::Error; | ||
type Client = Self; | ||
|
||
async fn connect(_config: &Self::Config) -> Result<Self::Client, Self::Error> { | ||
Ok(MockRabbitPublisher {}) | ||
} | ||
} | ||
|
||
#[async_trait::async_trait] | ||
impl Publisher for MockRabbitPublisher { | ||
type Error = (); | ||
|
||
async fn publish(&self, msg_body: &PublishNews) -> Result<(), Self::Error> { | ||
tracing::info!("rabbit confirm message successful: {}", msg_body.id()); | ||
Ok(()) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
pub mod mock_rmq_publish; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters