ci: run endurance test

This commit is contained in:
Jarek Kowalski
2021-04-03 10:05:04 -07:00
parent e1daef2f4a
commit 79adef0f33
3 changed files with 66 additions and 7 deletions

25
.github/workflows/endurance-test.yml vendored Normal file
View File

@@ -0,0 +1,25 @@
name: Endurance Test
on:
push:
branches: [ master ]
tags:
- v*
schedule:
# run on Mondays at 8AM
- cron: '0 8 * * 1'
jobs:
endurance-test:
name: Endurance Test
runs-on: ubuntu-latest
steps:
- name: Set up Go.
uses: actions/setup-go@v2
with:
go-version: ^1.16
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Endurance Tests
run: make endurance-tests