-
-
Notifications
You must be signed in to change notification settings - Fork 58
37 lines (32 loc) · 1.01 KB
/
nightly.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Nightly Test
on:
schedule:
- cron: "0 9 * * *"
jobs:
test:
name: Nightly Test
env:
FORCE_COLOR: 1
NGROK_AUTHTOKEN: ${{ secrets.NGROK_AUTHTOKEN }}
NGROK_API_KEY: ${{ secrets.NGROK_API_KEY }}
NGROK_DOMAIN: ${{ secrets.NGROK_DOMAIN }}
NGROK_HTTP_EDGE: ${{ secrets.NGROK_HTTP_EDGE }}
NGROK_HTTP_EDGE_ENDPOINT: ${{ secrets.NGROK_HTTP_EDGE_ENDPOINT }}
NGROK_TCP_EDGE: ${{ secrets.NGROK_TCP_EDGE }}
NGROK_TCP_EDGE_ENDPOINT: ${{ secrets.NGROK_TCP_EDGE_ENDPOINT }}
NGROK_TLS_EDGE: ${{ secrets.NGROK_TLS_EDGE }}
NGROK_TLS_EDGE_ENDPOINT: ${{ secrets.NGROK_TLS_EDGE_ENDPOINT }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Test
uses: nick-fields/retry@v3
with:
timeout_minutes: 15
retry_wait_seconds: 30
max_attempts: 3
command: make install test