Skip to content

Commit

Permalink
ci: add live test
Browse files Browse the repository at this point in the history
  • Loading branch information
coderbyheart committed Feb 14, 2024
1 parent 4f62a5e commit 4214d76
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/live-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Live test

on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
push:
paths:
- ".github/workflows/live-test.yaml"

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 1.21.6

- name: Run test client
working-directory: client
run: go run client.go -address coap.nordicsemi.academy

0 comments on commit 4214d76

Please sign in to comment.