Skip to content

Commit

Permalink
feat: add docker test for current protocol(vmess, ss, trojan) (#324)
Browse files Browse the repository at this point in the history
  • Loading branch information
VendettaReborn authored Mar 28, 2024
1 parent 0d6c1d0 commit aa10b1c
Show file tree
Hide file tree
Showing 20 changed files with 1,626 additions and 440 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,13 @@ jobs:
run: cargo check --all --all-features
- name: Run cargo clippy
run: cargo clippy --all --all-features -- -D warnings
- name: Run cargo test
- name: Run cargo test on non-macos
if: ${{ matrix.os }} != 'macos-13'
run: cargo test --all --all-features
env:
CLASH_RS_CI: 'true'
- name: Run cargo test on macos
if: ${{ matrix.os }} == 'macos-13'
run: cargo test --all --all-features
- name: Build artifacts
run: sh ./scripts/build.sh "${{ matrix.platforms.target }}" "${{ matrix.static }}"
Expand Down
Loading

0 comments on commit aa10b1c

Please sign in to comment.