Skip to content

Instantly share code, notes, and snippets.

@yanniszark
Last active September 14, 2020 20:27
Show Gist options
  • Save yanniszark/5afa8fe0da6c80928aa9cc60056db655 to your computer and use it in GitHub Desktop.
Save yanniszark/5afa8fe0da6c80928aa9cc60056db655 to your computer and use it in GitHub Desktop.
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