Skip to content

Commit c804d07

Browse files
TrottBethGriggs
authored andcommittedSep 21, 2021
build: add daily/on-demand internet test workflow
PR-URL: #40086 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
1 parent 4aa2610 commit c804d07

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
 

‎.github/workflows/test-internet.yml

+26
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)
Please sign in to comment.