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 e016cc7 commit ed556c0Copy full SHA for ed556c0
.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