Skip to content

Commit

Permalink
build: add daily/on-demand internet test workflow
Browse files Browse the repository at this point in the history
PR-URL: #40086
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
  • Loading branch information
Trott authored and BethGriggs committed Sep 21, 2021
1 parent 4aa2610 commit c804d07
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/test-internet.yml
@@ -0,0 +1,26 @@
name: test-internet

on:
workflow_dispatch:
schedule:
- cron: "5 0 * * *"

env:
PYTHON_VERSION: 3.9
FLAKY_TESTS: dontcare

jobs:
test-internet:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v2
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Environment Information
run: npx envinfo
- name: Build
run: make build-ci -j2 V=1 CONFIG_FLAGS="--error-on-warn"
- name: Test Internet
run: make test-internet -j2 V=1;

0 comments on commit c804d07

Please sign in to comment.