8000 Update MH weather forecast from Home Assistant weather entity · hollie/misterhouse@7ec647e · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Common code to update weather forecast from HA weather entity, and update IA7 with uninitialized item color and label #246

Common code to update weather forecast from HA weather entity, and update IA7 with uninitialized item color and label

Common code to update weather forecast from HA weather entity, and update IA7 with uninitialized item color and label #246

Workflow file for this run

name: CI on master
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
pull_request:
types: [ assigned, opened, synchronize, reopened ]
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
test_master:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-latest']
perl: [ '5.32', '5.30' ]
name: Perl ${{ matrix.perl }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: shogo82148/actions-setup-perl@v1
with:
perl-version: ${{ matrix.perl }}
- run: perl -V
- run: sudo apt-get install libgd-gd2-perl
- run: sudo killall mono
- run: sudo netstat -tulpn
- run: cd bin ; ./mh -tk 0 -debug process -code_dir ../code/test
0