Skip to content

WIP walkthrough broadened to include config and publish #777

WIP walkthrough broadened to include config and publish

WIP walkthrough broadened to include config and publish #777

Workflow file for this run

name: Learn-CLI
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
go-version: [1.17.x]
platform: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v1
- name: Test
run: go test -v ./...