Last active
September 26, 2019 04:31
-
-
Save DeNeutoy/c68b87078fc81e5db22ef0fcfa6f85a2 to your computer and use it in GitHub Desktop.
Github Actions gist
This file contains 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
name: CI | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Build and test with Docker | |
run: | | |
docker build --tag research_project . | |
docker run --rm --entrypoint pytest research_project tests | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment