Skip to content
This repository has been archived by the owner on Jan 3, 2024. It is now read-only.

Bump word-wrap from 1.2.3 to 1.2.4 in /vscode #41

Bump word-wrap from 1.2.3 to 1.2.4 in /vscode

Bump word-wrap from 1.2.3 to 1.2.4 in /vscode #41

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: build-and-test
runs-on: ubuntu-latest
steps:
- name: setup
uses: actions/setup-go@v2
with:
go-version: ^1.14
id: go
- name: checkout
uses: actions/checkout@v2
- name: get dependencies
run: go get -v -t -d ./...
- name: schema
run: ./schema.py && ./concourse-schema.py
- name: build
run: ./devlib/buildgo.py --all
- name: test
run: YTT_LINT_SCHEMA_PATH="$PWD/vscode/schema/" go test ./...