Skip to content

Commit

Permalink
Add Nightly Build Unit Test (aws-observability#679)
Browse files Browse the repository at this point in the history
  • Loading branch information
sethAmazon committed Oct 21, 2021
1 parent f629356 commit ecafef9
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/nightly-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Nightly Build

on:
schedule:
- cron: '0 0 * * *' # run at mid night
workflow_dispatch:

jobs:

build:
name: Nightly Build
runs-on: ubuntu-latest
steps:

- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.17
id: go

- name: Check out code
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Unit test
run: make test

0 comments on commit ecafef9

Please sign in to comment.