Bump debug from 4.1.1 to 4.3.1 in /eosq #678
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: Build and Test | |
on: | |
push: | |
branches: | |
- develop | |
pull_request: | |
branches: | |
- "**" | |
jobs: | |
test: | |
name: Test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-18.04] | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v1 | |
with: | |
go-version: 1.14 | |
- name: Check out code | |
uses: actions/checkout@v1 | |
- name: Cache Go modules | |
uses: actions/cache@v2 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: Run Unit tests. | |
run: go test ./... | |
- name: Build dfuseeos | |
run: go build -o dfuseeos ./cmd/dfuseeos | |
# This one might be a bit more complicated... Unsure how this will behave in Github's workflow environment. | |
# - name: Smoke Test | |
# working-directory: tests | |
# run: DEBUG=true E2E_TESTS=true go test | |