add .github/workflows/docker.yml

This commit is contained in:
rinsuki 2019-10-19 14:38:47 +09:00
parent 02ec45606a
commit b398f9f51e
1 changed files with 13 additions and 0 deletions

13
.github/workflows/docker.yml vendored Normal file
View File

@ -0,0 +1,13 @@
name: Docker build
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build docker container
run: docker build -t misskey/misskey .