| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff 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; | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments