Skip to content

Commit

Permalink
Add Docker CI workflow and update Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
sahi-mfg committed Jan 1, 2024
1 parent cc007ad commit f28a3c2
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 21 deletions.
21 changes: 0 additions & 21 deletions .github/workflows/ci.yml

This file was deleted.

13 changes: 13 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Docker CI

on: [push]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build the Docker image
run: |
make build
make test
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ stop:
clean: stop
docker rmi $(IMAGE_NAME)

test:
python -m pytest -v




0 comments on commit f28a3c2

Please sign in to comment.