mirror of
https://github.com/facefusion/facefusion-docker.git
synced 2026-04-29 04:45:56 +02:00
Initial commit
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
name: ci
|
||||
|
||||
on: [ push, pull_request ]
|
||||
|
||||
jobs:
|
||||
test:
|
||||
name: ${{ matrix.config.image-name }}
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
config:
|
||||
- { docker-file: 'Dockerfile.cpu', image-name: 'facefusion-cpu' }
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
- run: docker build -f ${{ matrix.config.docker-file }} -t ${{ matrix.config.image-name }} .
|
||||
- run: docker run -d ${{ matrix.config.image-name }}
|
||||
- run: docker ps | grep -q ${{ matrix.config.image-name }}
|
||||
Reference in New Issue
Block a user