Split docker into separate CI task
This commit is contained in:
parent
2920822623
commit
c69cf3416e
2 changed files with 13 additions and 2 deletions
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
@ -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
13
.github/workflows/docker.yml
vendored
Normal 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 .
|
Reference in a new issue