Skip to content

nightly

nightly #4

Workflow file for this run

name: nightly
on:
schedule:
- cron: "0 4 * * *"
workflow_dispatch:
jobs:
hardening:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- run: ./scripts/test_hardening.sh
shell: bash
- run: ./scripts/test_chaos.sh
shell: bash
- run: ./scripts/test_soak.sh
shell: bash
- run: ./scripts/test_acceptance.sh
shell: bash
performance:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- run: ./scripts/test_performance.sh