-
Notifications
You must be signed in to change notification settings - Fork 36
43 lines (41 loc) · 1.46 KB
/
main.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
name: CI
on:
push:
branches: master
pull_request:
branches: master
jobs:
test:
strategy:
matrix:
rust: [stable, beta, nightly]
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: ${{ matrix.rust }}
components: clippy
- name: Clippy
run: |
cargo clippy --all-targets --no-default-features --features=tokio -- -D warnings
cargo clippy --all-targets --no-default-features --features=tokio,tor -- -D warnings
cargo clippy --all-targets --no-default-features --features=futures-io -- -D warnings
cargo clippy --all-targets --no-default-features --features=futures-io,tor -- -D warnings
cargo clippy --all-targets --all-features -- -D warnings
- name: Install 3proxy
run: |
cd $HOME
curl -OL https://github.com/3proxy/3proxy/archive/refs/tags/0.8.13.tar.gz
tar xvf 0.8.13.tar.gz
cd 3proxy-0.8.13 && ln -s Makefile.Linux Makefile && make -j$(nproc)
sudo apt-get update
sudo apt-get install socat -y
- name: Build
run: |
cargo build --examples --all-features
cargo build --verbose --all --all-features
cargo test --lib --verbose --all-features
- name: Run tests
run: |
env PATH=$HOME/3proxy-0.8.13/src:$PATH tests/integration_tests.sh