Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit c804d07

Browse filesBrowse files
TrottBethGriggs
authored andcommitted
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
Copy full SHA for c804d07

File tree

Expand file treeCollapse file tree

1 file changed

+26
-0
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+26
-0
lines changed
Open diff view settings
Collapse file
+26Lines changed: 26 additions & 0 deletions
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.