There was an error while loading. Please reload this page.
1 parent 4aa2610 commit c804d07Copy full SHA for c804d07
1 file changed
.github/workflows/test-internet.yml
@@ -0,0 +1,26 @@
1
+name: test-internet
2
+
3
+on:
4
+workflow_dispatch:
5
+schedule:
6
+ - cron: "5 0 * * *"
7
8
+env:
9
+PYTHON_VERSION: 3.9
10
+FLAKY_TESTS: dontcare
11
12
+jobs:
13
+test-internet:
14
+runs-on: ubuntu-latest
15
+steps:
16
+ - uses: actions/checkout@v2
17
+ - name: Set up Python ${{ env.PYTHON_VERSION }}
18
+uses: actions/setup-python@v2
19
+with:
20
+python-version: ${{ env.PYTHON_VERSION }}
21
+ - name: Environment Information
22
+run: npx envinfo
23
+ - name: Build
24
+run: make build-ci -j2 V=1 CONFIG_FLAGS="--error-on-warn"
25
+ - name: Test Internet
26
+run: make test-internet -j2 V=1;
0 commit comments