summaryrefslogtreecommitdiffstats
path: root/mqtt_websockets/.github/workflows/run-tests.yaml
blob: da5dde821b13ffee209c961cf083db89a4018bcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
name: run-tests
on:
  push:
  schedule:
      - cron: '5 3 * * 0'
  pull_request:
jobs:
  run-tests:
    runs-on: ubuntu-latest
    steps:
      - name: Install ruby and deps
        run: sudo apt-get install ruby ruby-dev mosquitto
      - name: Checkout
        uses: actions/checkout@v2