Skip to content

Instantly share code, notes, and snippets.

@DeNeutoy
Last active September 26, 2019 04:31
Show Gist options
  • Save DeNeutoy/c68b87078fc81e5db22ef0fcfa6f85a2 to your computer and use it in GitHub Desktop.
Save DeNeutoy/c68b87078fc81e5db22ef0fcfa6f85a2 to your computer and use it in GitHub Desktop.
Github Actions gist
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