Skip to content

Commit

Permalink
Build Docker images and run tests in CI #367
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Druez <tdruez@nexb.com>
  • Loading branch information
tdruez committed Dec 3, 2021
1 parent 25bcedc commit 568beb1
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci-docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Docker Images CI

on: [push]

jobs:
build:
runs-on: ubuntu-20.04

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Build the docker-compose stack
run: docker-compose build

- name: Run tests
run: docker exec worker bin/python manage.py test --verbosity=2 --noinput

0 comments on commit 568beb1

Please sign in to comment.