Skip to content

Commit 1dbda9f

Browse files
committed
Add proxy test on CI
1 parent a3f5569 commit 1dbda9f

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

.github/workflows/test_proxy.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Proxy Test
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
test-proxy:
7+
runs-on: ubuntu-latest
8+
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
9+
10+
steps:
11+
- uses: actions/checkout@v3
12+
13+
- name: Install dependencies
14+
run: |
15+
sudo apt-get update
16+
sudo apt-get install -y build-essential libssl-dev zlib1g-dev libcurl4-openssl-dev
17+
18+
- name: Run proxy tests
19+
run: |
20+
cd test && make proxy

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ ipch
4242
*.pyc
4343
.*
4444
!/.gitattributes
45-
!/.travis.yml
45+
!/.github

0 commit comments

Comments
 (0)