CI: add docker build test

This commit is contained in:
ewfian 2023-06-05 21:32:02 +09:00
parent ab00214ec2
commit 3d8c7d5c1f
1 changed files with 22 additions and 0 deletions

22
.github/workflows/test_docker_build.yml vendored Normal file
View File

@ -0,0 +1,22 @@
name: Test Docker Build
on:
push:
branches:
- master
pull_request:
branches:
- "*"
jobs:
build:
strategy:
matrix:
platform: [macos-latest, windows-latest, ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- run: docker build --no-cache -t flowise .