ceremonyclient/pebble/.github/workflows/sanitizers.yaml

33 lines
543 B
YAML
Raw Normal View History

2024-01-03 07:31:42 +00:00
name: Sanitizers
on:
schedule:
- cron: "0 0 * * *" # Midnight UTC, daily.
jobs:
linux-asan:
name: go-linux-asan
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: "1.21"
- run: make testasan
linux-msan:
name: go-linux-msan
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: "1.21"
- run: make testmsan