mirror of
https://github.com/Fishwaldo/qt-openzwave.git
synced 2025-03-15 19:41:24 +00:00
Cleanup some debugging output ensure crashdump directory exists on startup (issue #18) Create a Github Action to test PR requests.
16 lines
No EOL
357 B
YAML
16 lines
No EOL
357 B
YAML
name: ozwdaemon Docker Image Build Test
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, edited, reopened, synchronize]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v1
|
|
with:
|
|
fetch-depth: 1 # shallow clone
|
|
- name: Build Docker Image
|
|
run: docker build . --file Docker/Dockerfile |