We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca7a593 commit a784770Copy full SHA for a784770
1 file changed
.github/workflows/ci.yml
@@ -11,7 +11,7 @@ jobs:
11
env:
12
SQLX_OFFLINE: true
13
CARGO_TERM_COLOR: always
14
- CARGO_BUILD_JOBS: 2
+ CARGO_BUILD_JOBS: 3
15
strategy:
16
matrix:
17
toolchain: [stable]
@@ -40,7 +40,10 @@ jobs:
40
source "$HOME/.cargo/env"
41
42
if ! command -v trunk &> /dev/null; then
43
- cargo install trunk --locked
+ wget https://github.com/trunk-rs/trunk/releases/latest/download/trunk-aarch64-unknown-linux-gnu.tar.gz
44
+ tar -xzf trunk-aarch64-unknown-linux-gnu.tar.gz
45
+ sudo mv trunk /usr/local/bin/
46
+ rm trunk-aarch64-unknown-linux-gnu.tar.gz
47
fi
48
49
REQUIRED_VERSION=$(cargo metadata --format-version 1 --no-deps 2>/dev/null \
@@ -89,4 +92,4 @@ jobs:
89
92
run: cargo build --verbose -p rustmail
90
93
91
94
- name: Run tests
- run: cargo test --verbose -p rustmail
95
+ run: cargo test --verbose -p rustmail
0 commit comments