-
Notifications
You must be signed in to change notification settings - Fork 2
57 lines (50 loc) · 1.43 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
on:
pull_request:
name: CI
jobs:
check:
name: Check and Clippy
runs-on: ubuntu-latest
env:
RUSTFLAGS: -D warnings
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo check --all
- run: rustup component add clippy
- run: cargo clippy
fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: rustup component add rustfmt
- run: cargo fmt --all --check
test:
name: Test Suite
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Start Wrangler Worker
working-directory: worker
run: |
cp wrangler.toml.sample wrangler.toml
npm install -g wrangler@latest
nohup npx wrangler@latest dev > wrangler.log 2>&1 &
tail -f wrangler.log | while read LOGLINE
do
echo "${LOGLINE}"
[[ "${LOGLINE}" == *"Ready on http://localhost:8787"* ]] && pkill -P $$ tail
done
- run: cd $GITHUB_WORKSPACE && cargo test --all-features
worker-build:
name: Worker build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo install -q worker-build
- run: worker-build --release
working-directory: worker