archive
/
todoist-github
Archived
1
Fork 0

Split docker into separate CI task

This commit is contained in:
Jake Howard 2020-01-09 16:53:10 +00:00
parent 2920822623
commit c69cf3416e
Signed by: jake
GPG Key ID: 57AFB45680EDD477
2 changed files with 13 additions and 2 deletions

View File

@ -17,5 +17,3 @@ jobs:
run: pip install -r dev-requirements.txt
- name: Run tests
run: bash ./scripts/test.sh
- name: Build docker image
run: docker build .

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

@ -0,0 +1,13 @@
name: Build Docker Image
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build docker image
run: docker build .