We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3f5569 commit 1dbda9fCopy full SHA for 1dbda9f
.github/workflows/test_proxy.yaml
@@ -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
20
+ cd test && make proxy
.gitignore
@@ -42,4 +42,4 @@ ipch
42
*.pyc
43
.*
44
!/.gitattributes
45
-!/.travis.yml
+!/.github
0 commit comments