Skip to content
This repository was archived by the owner on Oct 6, 2024. It is now read-only.

Commit e71feac

Browse files
committed
Merge branch 'bugfix/email-parser'
2 parents bae8197 + 376652a commit e71feac

File tree

4 files changed

+10
-16
lines changed

4 files changed

+10
-16
lines changed

.github/workflows/rust.yml

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,17 @@
22
# Author: Nyah Check
33
name: Build & Run Tests
44

5-
on:
6-
push:
7-
branches: [ master ]
8-
pull_request:
9-
branches: [ master ]
10-
5+
on: [push, pull_request]
6+
7+
env:
8+
CARGO_TERM_COLOR: always
119

1210
jobs:
1311
build-and-run-tests:
14-
runs-on: ${{ matrix.os }}
15-
strategy:
16-
matrix:
17-
os: [ubuntu-latest, windows-latest, macOS-latest]
18-
rust: [stable, nightly, beta]
12+
runs-on: ubuntu-latest
1913
steps:
2014
- uses: actions/checkout@v2
21-
with:
22-
rust-version: ${{ matrix.rust }}
15+
- name: Build
16+
run: cargo build --verbose
2317
- name: Run tests
2418
run: cargo test --verbose

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "privatemail"
33
description = "Service to forward custom emails to personal email server"
4-
version = "1.2.0"
4+
version = "0.1.0"
55
authors = ["Nyah Check <[email protected]>"]
66
license = "MIT"
77
homepage = "https://github.com/ch3ck"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ mod tests {
230230
}
231231

232232
#[tokio::test]
233-
#[ignore = "skipping integration because of IAM requirements"]
233+
// #[ignore = "skipping integration because of IAM requirements"]
234234
async fn handler_with_success() {
235235
env::set_var("TO_EMAIL", "[email protected]");
236236
env::set_var("FROM_EMAIL", "[email protected]");

0 commit comments

Comments
 (0)