Last active
May 29, 2022 07:58
-
-
Save twyle/93dd667e6b96686cbfa9604407efdded to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
update-pip: | |
@pip install --upgrade pip | |
install: update-pip requirements.txt | |
@pip install -r requirements.txt | |
install-dev: requirements-dev.txt | |
@pip install -r requirements-dev.txt | |
run-locally: | |
@INPUT_CODEDIRECTORY=src INPUT_TESTDIRECTORY=tests python3 main.py | |
build: | |
@sudo docker build -t twyle/oryks-code-coverage:latest . | |
run: | |
@sudo docker run --env INPUT_CODEDIRECTORY=src/ --env INPUT_TESTDIRECTORY=tests/ ${imageid} | |
images: | |
@sudo docker images |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment