Last active
September 14, 2020 20:27
-
-
Save yanniszark/5afa8fe0da6c80928aa9cc60056db655 to your computer and use it in GitHub Desktop.
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: Go | |
on: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
ci: | |
name: CI | |
runs-on: ubuntu-18.04 | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Install binary deps | |
run: make bin/deps | |
- name: Unit tests | |
run: make test | |
- name: E2E Test | |
run: make e2e |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment